mirror of
https://github.com/cldellow/sqlite-parquet-vtable.git
synced 2025-04-03 09:39:47 +00:00
BOOL and INT96 tests
This commit is contained in:
parent
e87f0d0f68
commit
cbf388698b
2
tests/queries/109-bool-where-eq-0.sql
Normal file
2
tests/queries/109-bool-where-eq-0.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where bool_0 = 0
|
||||
44
|
2
tests/queries/110-bool-where-eq-1.sql
Normal file
2
tests/queries/110-bool-where-eq-1.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where bool_0 = 1
|
||||
5
|
2
tests/queries/111-bool-where-bool.sql
Normal file
2
tests/queries/111-bool-where-bool.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where bool_0
|
||||
5
|
2
tests/queries/112-bool-where-not-bool.sql
Normal file
2
tests/queries/112-bool-where-not-bool.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where not bool_0
|
||||
44
|
2
tests/queries/113-bool-where-gt-0.sql
Normal file
2
tests/queries/113-bool-where-gt-0.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where bool_0 > 0
|
||||
5
|
2
tests/queries/114-bool-where-gte-0.sql
Normal file
2
tests/queries/114-bool-where-gte-0.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where bool_0 >= 0
|
||||
49
|
2
tests/queries/115-bool-where-gt-1.sql
Normal file
2
tests/queries/115-bool-where-gt-1.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where bool_0 > 1
|
||||
0
|
2
tests/queries/116-bool-where-lt-0.sql
Normal file
2
tests/queries/116-bool-where-lt-0.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where bool_0 < 0
|
||||
0
|
2
tests/queries/117-bool-where-lt-1.sql
Normal file
2
tests/queries/117-bool-where-lt-1.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where bool_0 < 1
|
||||
44
|
2
tests/queries/118-bool-where-lte-1.sql
Normal file
2
tests/queries/118-bool-where-lte-1.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where bool_0 <= 1
|
||||
49
|
2
tests/queries/119-ts-eq-july-20.sql
Normal file
2
tests/queries/119-ts-eq-july-20.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where ts_5 = 490665600000
|
||||
1
|
2
tests/queries/120-ts-lt-july-20.sql
Normal file
2
tests/queries/120-ts-lt-july-20.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where ts_5 < 490665600000
|
||||
0
|
2
tests/queries/121-ts-lte-july-20.sql
Normal file
2
tests/queries/121-ts-lte-july-20.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where ts_5 <= 490665600000
|
||||
1
|
2
tests/queries/122-ts-gt-july-20.sql
Normal file
2
tests/queries/122-ts-gt-july-20.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where ts_5 > 490665600000
|
||||
49
|
2
tests/queries/123-ts-gte-july-20.sql
Normal file
2
tests/queries/123-ts-gte-july-20.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where ts_5 >= 490665600000
|
||||
50
|
2
tests/queries/124-ts-ne-july-20.sql
Normal file
2
tests/queries/124-ts-ne-july-20.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where ts_5 <> 490665600000
|
||||
49
|
Loading…
x
Reference in New Issue
Block a user