File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4141 key : ${{ runner.os }}-cargo-target-${{ hashFiles('Cargo.lock') }}
4242 - name : Setup Rust Toolchain
4343 uses : ./.github/actions/setup-rust
44- - name : Run tests (ex-FlightSQL)
44+ - name : Run core tests
4545 run : |
4646 cargo test
4747 test-flightsql :
Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ fn test_sql_err_in_file() {
176176 . failure ( ) ;
177177
178178 let expected_err =
179- "Expected: [NOT] NULL or TRUE| FALSE or [NOT] DISTINCT FROM after IS, found: not " ;
179+ "Expected: [NOT] NULL | TRUE | FALSE | DISTINCT | [form] NORMALIZED FROM after IS, found: valid at Line: 1, Column: 20 " ;
180180 assert. code ( 1 ) . stderr ( contains_str ( expected_err) ) ;
181181}
182182
@@ -199,7 +199,7 @@ SELECT this is not valid SQL
199199 . failure ( ) ;
200200
201201 let expected_err =
202- "Expected: [NOT] NULL or TRUE| FALSE or [NOT] DISTINCT FROM after IS, found: not " ;
202+ "Expected: [NOT] NULL | TRUE | FALSE | DISTINCT | [form] NORMALIZED FROM after IS, found: valid at Line: 5, Column: 20 " ;
203203 assert. code ( 1 ) . stderr ( contains_str ( expected_err) ) ;
204204}
205205
You can’t perform that action at this time.
0 commit comments