BOOL and INT96 tests

This commit is contained in:
Colin Dellow 2018-03-16 16:02:11 -04:00
parent e87f0d0f68
commit cbf388698b
16 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,2 @@
select count(*) from nulls where bool_0 = 0
44

View File

@ -0,0 +1,2 @@
select count(*) from nulls where bool_0 = 1
5

View File

@ -0,0 +1,2 @@
select count(*) from nulls where bool_0
5

View File

@ -0,0 +1,2 @@
select count(*) from nulls where not bool_0
44

View File

@ -0,0 +1,2 @@
select count(*) from nulls where bool_0 > 0
5

View File

@ -0,0 +1,2 @@
select count(*) from nulls where bool_0 >= 0
49

View File

@ -0,0 +1,2 @@
select count(*) from nulls where bool_0 > 1
0

View File

@ -0,0 +1,2 @@
select count(*) from nulls where bool_0 < 0
0

View File

@ -0,0 +1,2 @@
select count(*) from nulls where bool_0 < 1
44

View File

@ -0,0 +1,2 @@
select count(*) from nulls where bool_0 <= 1
49

View File

@ -0,0 +1,2 @@
select count(*) from nulls where ts_5 = 490665600000
1

View File

@ -0,0 +1,2 @@
select count(*) from nulls where ts_5 < 490665600000
0

View File

@ -0,0 +1,2 @@
select count(*) from nulls where ts_5 <= 490665600000
1

View File

@ -0,0 +1,2 @@
select count(*) from nulls where ts_5 > 490665600000
49

View File

@ -0,0 +1,2 @@
select count(*) from nulls where ts_5 >= 490665600000
50

View File

@ -0,0 +1,2 @@
select count(*) from nulls where ts_5 <> 490665600000
49