Commit eb60488 1 parent 5510d11 commit eb60488 Copy full SHA for eb60488
File tree 3 files changed +4
-4
lines changed
tests/codeschool-sqlite-parser-test-files
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -210,6 +210,9 @@ pub enum UnaryOp {
210
210
211
211
/// Minus (-)
212
212
Minus ,
213
+
214
+ /// Not (!) or NOT
215
+ Not ,
213
216
}
214
217
215
218
/// An SQL function
Original file line number Diff line number Diff line change @@ -145,8 +145,6 @@ pub fn test() {
145
145
"tests/codeschool-sqlite-parser-test-files/sql/official-suite/boundary1-2.sql"
146
146
"tests/codeschool-sqlite-parser-test-files/sql/official-suite/fts3ad-1.sql"
147
147
"tests/codeschool-sqlite-parser-test-files/sql/official-suite/randexpr1-11.sql"
148
- "tests/codeschool-sqlite-parser-test-files/sql/datatypes/basic-datatypes.sql"
149
- "tests/codeschool-sqlite-parser-test-files/sql/parse-errors/parse-error-1.sql"
150
148
"tests/codeschool-sqlite-parser-test-files/sql/expressions/expression-unary-1.sql"
151
149
"tests/codeschool-sqlite-parser-test-files/sql/expressions/expression-grouping-9.sql"
152
150
"tests/codeschool-sqlite-parser-test-files/sql/expressions/expression-grouping-8.sql"
@@ -157,7 +155,7 @@ pub fn test() {
157
155
*/
158
156
159
157
let sql_content = fs:: read_to_string (
160
- "tests/codeschool-sqlite-parser-test-files/sql/datatypes/basic-datatypes .sql" ,
158
+ "tests/codeschool-sqlite-parser-test-files/sql/expressions/expression-unary-1 .sql" ,
161
159
)
162
160
. unwrap ( ) ;
163
161
let result = run_test ( & sql_content) ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments