We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Summary
Description for this feature.
Query:
INSERT INTO `books` VALUES ('Transaction Processing','Jim Gray', 1992),('Readings in Database Systems','Michael Stonebraker', 2004);
The entire SQL goes into SQL parser and expression-executor, because we can have expression inside VALUES, eg:
INSERT INTO `books` VALUES ('Transaction Processing','Jim Gray', now() - 3),('Readings in Database Systems','Michael Stonebraker', 2004);
To support expressions, this insert SQL works really slow. We can improve the performance by:
The text was updated successfully, but these errors were encountered:
/assignme
Sorry, something went wrong.
@sundy-li I find a way to address the lifetime, will create a draft pr soon.
ygf11
Successfully merging a pull request may close this issue.
Summary
Description for this feature.
Query:
The entire SQL goes into SQL parser and expression-executor, because we can have expression inside VALUES, eg:
To support expressions, this insert SQL works really slow. We can improve the performance by:
The text was updated successfully, but these errors were encountered: