File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -99,20 +99,20 @@ LIMIT return 'LIMIT'
99
99
"!" return ' !'
100
100
"|" return ' |'
101
101
"&" return ' &'
102
- "<<" return ' <<'
103
- ">>" return ' >>'
104
102
"+" return ' +'
105
103
"-" return ' -'
106
104
"*" return ' *'
107
105
"/" return ' /'
108
106
"%" return ' %'
109
107
"^" return ' ^'
108
+ ">>" return ' >>'
110
109
">=" return ' >='
110
+ ">" return ' >'
111
+ "<<" return ' <<'
111
112
"<=>" return ' <=>'
112
113
"<=" return ' <='
113
- ">" return ' >'
114
- "<" return ' <'
115
114
"<>" return ' <>'
115
+ "<" return ' <'
116
116
"{" return ' {'
117
117
"}" return ' }'
118
118
";" return ' ;'
Original file line number Diff line number Diff line change @@ -134,5 +134,9 @@ AND (rd.rd_numberofrooms <= (select sum(rn.reservation_numberofrooms) as count_r
134
134
it ( 'limit support.' , function ( ) {
135
135
testParser ( 'select a from b limit 2, 3' ) ;
136
136
} ) ;
137
+
138
+ it ( 'fix not equal.' , function ( ) {
139
+ testParser ( 'select a from b where a <> 1 limit 2, 3' ) ;
140
+ } ) ;
137
141
} ) ;
138
142
You can’t perform that action at this time.
0 commit comments