-
Notifications
You must be signed in to change notification settings - Fork 490
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
Parser: Support SQL_BIG_RESULT, SQL_SMALL_RESULT, SQL_BUFFER_RESULT #304
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the contribution! I'd like to see some changes.
Thank you for working on this! It is good to have this for MySQL compatibility. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@b41sh Can you fix the formatting of |
ok |
@morgo PTAL |
LGTM, but I am a product manager :-) PTAL @lysu @tiancaiamao |
PTAL @crazycs520 |
LGTM |
This comment has been minimized.
This comment has been minimized.
1 similar comment
Codecov Report
@@ Coverage Diff @@
## master #304 +/- ##
=========================================
- Coverage 53.35% 53.3% -0.05%
=========================================
Files 31 31
Lines 6524 6530 +6
=========================================
Hits 3481 3481
- Misses 2704 2707 +3
- Partials 339 342 +3
Continue to review full report at Codecov.
|
…ingcap#304) * Support SQL_BIG_RESULT, SQL_SMALL_RESULT, SQL_BUFFER_RESULT * update test case * code formatting * word wrap
…ingcap#304) * Support SQL_BIG_RESULT, SQL_SMALL_RESULT, SQL_BUFFER_RESULT * update test case * code formatting * word wrap
What problem does this PR solve?
Support
SQL_BIG_RESULT
,SQL_SMALL_RESULT
,SQL_BUFFER_RESULT
Syntax for TiDB Parser. Fixed #141What is changed and how it works?
Add related syntax in parser.y
Add SQL_BIG_RESULT, SQL_SMALL_RESULT, SQL_BUFFER_RESULT in SelectStmtOpts
Update SelectStmt.Restore
Check List
Tests