1
0
mirror of https://github.com/cldellow/sqlite-parquet-vtable.git synced 2025-09-14 22:39:59 +00:00

Scaffolding for row group filters, tests

rowid is special since its column index is -1, so add
explicit tests around it
This commit is contained in:
Colin Dellow
2018-03-11 15:43:40 -04:00
parent 5559a7b563
commit 095b576cc2
11 changed files with 60 additions and 3 deletions

View File

@@ -0,0 +1,2 @@
select count(*) from no_nulls1 where rowid > 100
0

View File

@@ -0,0 +1,2 @@
select count(*) from no_nulls1 where rowid >= 100
0

View File

@@ -0,0 +1,2 @@
select count(*) from no_nulls1 where rowid < 0
0

View File

@@ -0,0 +1,2 @@
select count(*) from no_nulls1 where rowid < -1
0

View File

@@ -0,0 +1,2 @@
select count(*) from no_nulls1 where rowid <= 0
1

View File

@@ -0,0 +1,2 @@
select count(*) from no_nulls1 where rowid < 1
1

View File

@@ -0,0 +1,2 @@
select count(*) from no_nulls1 where rowid <> 1
98

View File

@@ -0,0 +1,2 @@
select count(*) from no_nulls1 where rowid is null
0

View File

@@ -0,0 +1,2 @@
select count(*) from no_nulls1 where rowid is not null
99