mirror of
https://github.com/cldellow/sqlite-parquet-vtable.git
synced 2025-03-12 07:49:45 +00:00
Tests for blobs
This commit is contained in:
parent
01e8ffaba7
commit
753a490687
2
tests/queries/125-fixed-bytearray-eq.sql
Normal file
2
tests/queries/125-fixed-bytearray-eq.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SELECT COUNT(*) FROM no_nulls2 WHERE binary_10 = X'10'
|
||||||
|
1
|
2
tests/queries/126-fixed-bytearray-lt.sql
Normal file
2
tests/queries/126-fixed-bytearray-lt.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SELECT COUNT(*) FROM no_nulls2 WHERE binary_10 < X'10'
|
||||||
|
16
|
2
tests/queries/127-fixed-bytearray-lte.sql
Normal file
2
tests/queries/127-fixed-bytearray-lte.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SELECT COUNT(*) FROM no_nulls2 WHERE binary_10 <= X'10'
|
||||||
|
17
|
2
tests/queries/128-fixed-bytearray-gt.sql
Normal file
2
tests/queries/128-fixed-bytearray-gt.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SELECT COUNT(*) FROM no_nulls2 WHERE binary_10 > X''
|
||||||
|
99
|
2
tests/queries/129-fixed-bytearray-gte.sql
Normal file
2
tests/queries/129-fixed-bytearray-gte.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SELECT COUNT(*) FROM no_nulls2 WHERE binary_10 >= X'01'
|
||||||
|
98
|
2
tests/queries/130-fixed-bytearray-ne.sql
Normal file
2
tests/queries/130-fixed-bytearray-ne.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SELECT COUNT(*) FROM no_nulls2 WHERE binary_10 <> X'10'
|
||||||
|
98
|
2
tests/queries/131-var-bytearray-eq.sql
Normal file
2
tests/queries/131-var-bytearray-eq.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SELECT COUNT(*) FROM nulls WHERE binary_9 = X'020202'
|
||||||
|
1
|
2
tests/queries/132-var-bytearray-lt.sql
Normal file
2
tests/queries/132-var-bytearray-lt.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SELECT COUNT(*) FROM no_nulls2 WHERE binary_9 < X'020202'
|
||||||
|
2
|
2
tests/queries/133-var-bytearray-lte.sql
Normal file
2
tests/queries/133-var-bytearray-lte.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SELECT COUNT(*) FROM nulls WHERE binary_9 <= X'0101'
|
||||||
|
2
|
2
tests/queries/134-var-bytearray-gt.sql
Normal file
2
tests/queries/134-var-bytearray-gt.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SELECT COUNT(*) FROM nulls WHERE binary_9 > X''
|
||||||
|
50
|
2
tests/queries/135-var-bytearray-gte.sql
Normal file
2
tests/queries/135-var-bytearray-gte.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SELECT COUNT(*) FROM nulls WHERE binary_9 >= X'62626262'
|
||||||
|
1
|
2
tests/queries/136-var-bytearray-ne.sql
Normal file
2
tests/queries/136-var-bytearray-ne.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SELECT COUNT(*) FROM nulls WHERE binary_9 <> X'62626262'
|
||||||
|
49
|
2
tests/queries/137-var-bytearray-lte.sql
Normal file
2
tests/queries/137-var-bytearray-lte.sql
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
SELECT COUNT(*) FROM nulls WHERE binary_9 <= X'01'
|
||||||
|
1
|
Loading…
x
Reference in New Issue
Block a user