1
0
mirror of https://github.com/cldellow/sqlite-parquet-vtable.git synced 2025-09-12 22:29:58 +00:00

Support float32

Fixes #32
This commit is contained in:
Colin Dellow
2018-07-05 19:48:14 -04:00
parent fd06ec5a23
commit 45ecf24a75
30 changed files with 472 additions and 443 deletions

View File

@@ -0,0 +1,2 @@
select float_11 from nulls where float_11 = 1.0
1.0

View File

@@ -0,0 +1 @@
select float_11 from nulls where float_11 = 123.0

View File

@@ -0,0 +1,2 @@
select float_11 from nulls where float_11 = '1'
1.0

View File

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

View File

@@ -0,0 +1,2 @@
select count(*) from nulls where float_11 is null
49

View File

@@ -0,0 +1,2 @@
select count(*) from nulls where float_11 is not null
50

View File

@@ -0,0 +1,2 @@
select float_11 from nulls where float_11 >= 1.0
1.0

View File

@@ -0,0 +1 @@
select float_11 from nulls where float_11 > 1.0

View File

@@ -0,0 +1,2 @@
select float_11 from nulls where float_11 > 0.5
1.0

View File

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

View File

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

View File

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