-
-
Notifications
You must be signed in to change notification settings - Fork 540
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Load data error #8307
Comments
This looks like we don't support SET syntax in our LOAD DATA. @jycor will look into this today. It may be easy to supportor it may take a few days. |
@jycor can you summarize what's left to do on this one? |
The two linked PRs (dolthub/go-mysql-server#2653 and dolthub/vitess#362) add support for the However, we are missing support for assigning user variables within a LOAD DATA INFILE <file_path> INTO TABLE t (i, j, @k) set k = concat('123', @k); I'm currently working adding this. |
Hey @Donxiaohao, thanks for making this issue! The fix is making its way to main, and we will have a release out for you later this week! |
@jycor Thank you so much , I will try |
mysql version 14.14



dolt version 1.42.11
When I follow the official recommendation to batch import and use the load data command,I encountered the error shown above.
The same command is executed normally in mysql
Looking at the error message, the problem lies in the set, but the official website syntax description is supported.
I think this is a bug,
The text was updated successfully, but these errors were encountered: