Skip to content
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: update parser.y make keywords in the order #50069

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions pkg/parser/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -861,8 +861,8 @@ const (
unicodeSym = 57950
union = 57569
unique = 57570
universal = 57953
unknown = 57951
universal = 57951
unknown = 57952
unlimited = 58074
unlock = 57571
unsigned = 57572
Expand All @@ -871,7 +871,7 @@ const (
update = 57574
usage = 57575
use = 57576
user = 57952
user = 57953
using = 57577
utcDate = 57578
utcTime = 57579
Expand Down Expand Up @@ -1138,15 +1138,15 @@ var (
57822: 215, // policy (1581x)
58029: 216, // predicate (1581x)
57927: 217, // temporary (1581x)
57952: 218, // user (1581x)
57953: 218, // user (1581x)
57680: 219, // digest (1580x)
58127: 220, // jobs (1580x)
57758: 221, // location (1580x)
58026: 222, // planCache (1580x)
57824: 223, // prepare (1580x)
57847: 224, // replica (1580x)
58142: 225, // stats (1580x)
57951: 226, // unknown (1580x)
57952: 226, // unknown (1580x)
57959: 227, // wait (1580x)
57628: 228, // btree (1579x)
57980: 229, // cooldown (1579x)
Expand All @@ -1167,7 +1167,7 @@ var (
57876: 244, // sequence (1579x)
57879: 245, // session (1579x)
57890: 246, // slow (1579x)
57953: 247, // universal (1579x)
57951: 247, // universal (1579x)
57954: 248, // validation (1579x)
57956: 249, // variables (1579x)
57607: 250, // attributes (1578x)
Expand Down
2 changes: 1 addition & 1 deletion pkg/parser/parser.y
Original file line number Diff line number Diff line change
Expand Up @@ -667,9 +667,9 @@ import (
uncommitted "UNCOMMITTED"
undefined "UNDEFINED"
unicodeSym "UNICODE"
universal "UNIVERSAL"
unknown "UNKNOWN"
user "USER"
universal "UNIVERSAL"
validation "VALIDATION"
value "VALUE"
variables "VARIABLES"
Expand Down