-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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/parser.y: S/R conflicts 1->0. #122
Conversation
Comma is |
Sorry for my fault. @cznic , I am wrong. |
LGTM |
LGTM Wow! All conflicts are resolved. |
parser/parser.y: S/R conflicts 1->0.
I think we should add syntax conflict detection in Makefile to prevent future bugs. I will add an issue. |
* *: remove vendor * lightning: replace deprecated prometheus.Handler by promhttp.Handler * go.mod: update all dependencies except TiDB * *: changed pkg/errors to pingcap/errors This is to avoid the "used for two different module paths" error, since TiDB no longer replaces pkg/errors with pingcap/errors but uses the latter directly. * CONTRIBUTING: update the guide, we no longer vendor/
* restore: support batch split Signed-off-by: 5kbpers <[email protected]> * go mod tidy Signed-off-by: 5kbpers <[email protected]> * address lint Signed-off-by: 5kbpers <[email protected]> Co-authored-by: Neil Shen <[email protected]>
* support specify ouput filename format * revise variable name * address comments * try to address comment * address comment
* BR adaption for keyspace feature (pingcap#38) Signed-off-by: iosmanthus <[email protected]> Co-authored-by: ystaticy <[email protected]> Co-authored-by: disksing <[email protected]> * build br image (pingcap#62) * build br image Signed-off-by: disksing <[email protected]> * BR: Serverless Compatible BR (pingcap#64) * disable remove scheduler and other pd related modifications when keyspace is set for BR Signed-off-by: David <[email protected]> * make tidb br forward compatible (pingcap#84) * make tidb br forward compatible Signed-off-by: iosmanthus <[email protected]> * fix bug,when tables>0 and file=0 Signed-off-by: ystaticy <[email protected]> * go mod tidy Signed-off-by: iosmanthus <[email protected]> Signed-off-by: iosmanthus <[email protected]> Signed-off-by: ystaticy <[email protected]> Co-authored-by: ystaticy <[email protected]> * Cse BR restore only download on leader (pingcap#120) * cse br restore,only download in region leader * support config Signed-off-by: ystaticy <[email protected]> * cse br restore,only download in region leader Signed-off-by: ystaticy <[email protected]> * cse br restore,only download in region leader Signed-off-by: ystaticy <[email protected]> * fix logs Signed-off-by: ystaticy <[email protected]> * fix logs Signed-off-by: ystaticy <[email protected]> * fix logs Signed-off-by: ystaticy <[email protected]> * remove unused code Signed-off-by: ystaticy <[email protected]> * fix imports Signed-off-by: ystaticy <[email protected]> * fix comments Signed-off-by: ystaticy <[email protected]> * fix config of leaderdownload Signed-off-by: ystaticy <[email protected]> * fix config of leaderdownload Signed-off-by: ystaticy <[email protected]> * if met not leader error.return error immediately. Signed-off-by: ystaticy <[email protected]> Signed-off-by: ystaticy <[email protected]> * support skip split option for small dataset (pingcap#122) * support skip split option for small dataset Signed-off-by: iosmanthus <[email protected]> * disable SplitTable only when skip split Signed-off-by: iosmanthus <[email protected]> * rename api version of FileImporter Signed-off-by: iosmanthus <[email protected]> Signed-off-by: iosmanthus <[email protected]> Signed-off-by: iosmanthus <[email protected]> Signed-off-by: disksing <[email protected]> Signed-off-by: David <[email protected]> Signed-off-by: ystaticy <[email protected]> Co-authored-by: ystaticy <[email protected]> Co-authored-by: disksing <[email protected]> Co-authored-by: David <[email protected]>
* Cse BR restore only download on leader (pingcap#120) * cse br restore,only download in region leader * support config Signed-off-by: ystaticy <[email protected]> * cse br restore,only download in region leader Signed-off-by: ystaticy <[email protected]> * cse br restore,only download in region leader Signed-off-by: ystaticy <[email protected]> * fix logs Signed-off-by: ystaticy <[email protected]> * fix logs Signed-off-by: ystaticy <[email protected]> * fix logs Signed-off-by: ystaticy <[email protected]> * remove unused code Signed-off-by: ystaticy <[email protected]> * fix imports Signed-off-by: ystaticy <[email protected]> * fix comments Signed-off-by: ystaticy <[email protected]> * fix config of leaderdownload Signed-off-by: ystaticy <[email protected]> * fix config of leaderdownload Signed-off-by: ystaticy <[email protected]> * if met not leader error.return error immediately. Signed-off-by: ystaticy <[email protected]> Signed-off-by: ystaticy <[email protected]> * support skip split option for small dataset (pingcap#122) * support skip split option for small dataset Signed-off-by: iosmanthus <[email protected]> * disable SplitTable only when skip split Signed-off-by: iosmanthus <[email protected]> * rename api version of FileImporter Signed-off-by: iosmanthus <[email protected]> Signed-off-by: iosmanthus <[email protected]> * remove blank line Signed-off-by: zeminzhou <[email protected]> * for cse Signed-off-by: zeminzhou <[email protected]> * add reload expr_pushdown_blacklist for br Signed-off-by: zeminzhou <[email protected]> * remove reload Signed-off-by: zeminzhou <[email protected]> * support rewrite tikv min version Signed-off-by: zeminzhou <[email protected]> * add comment Signed-off-by: zeminzhou <[email protected]> * move downloadleader to restore config Signed-off-by: zeminzhou <[email protected]> --------- Signed-off-by: ystaticy <[email protected]> Signed-off-by: iosmanthus <[email protected]> Signed-off-by: zeminzhou <[email protected]> Co-authored-by: ystaticy <[email protected]> Co-authored-by: iosmanthus <[email protected]>
WARNING: This PR removes the
CommaOpt
item in theCreateTableStmt
production. Looking at MySQL docs, I believe it should not be accepted in this part of the grammar. However, if I'm mistaken, then you should not merge this PR and please let me know whyCommaOpt
is there - as the proper solution would have to be different (if it then exists at all).