mirror of
https://github.com/cldellow/sqlite-parquet-vtable.git
synced 2025-04-03 09:39:47 +00:00
add glob tests
This commit is contained in:
parent
16bc06b813
commit
980291feff
2
tests/templates/156-glob.sql
Normal file
2
tests/templates/156-glob.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select string_7 from nulls where string_7 glob '7'
|
||||
7
|
7
tests/templates/157-glob-star.sql
Normal file
7
tests/templates/157-glob-star.sql
Normal file
@ -0,0 +1,7 @@
|
||||
select string_7 from nulls where string_7 glob '7*'
|
||||
7
|
||||
70
|
||||
72
|
||||
74
|
||||
76
|
||||
78
|
2
tests/templates/158-glob-star-eight.sql
Normal file
2
tests/templates/158-glob-star-eight.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select string_7 from nulls where string_7 glob '7*8'
|
||||
78
|
10
tests/templates/159-glob-star-zero.sql
Normal file
10
tests/templates/159-glob-star-zero.sql
Normal file
@ -0,0 +1,10 @@
|
||||
select string_7 from nulls where string_7 glob '*0'
|
||||
0
|
||||
20
|
||||
30
|
||||
40
|
||||
50
|
||||
60
|
||||
70
|
||||
80
|
||||
90
|
2
tests/templates/160-glob-star.sql
Normal file
2
tests/templates/160-glob-star.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where string_7 glob '*'
|
||||
50
|
2
tests/templates/161-glob-star-stuff.sql
Normal file
2
tests/templates/161-glob-star-stuff.sql
Normal file
@ -0,0 +1,2 @@
|
||||
select count(*) from nulls where string_7 glob '*123'
|
||||
0
|
Loading…
x
Reference in New Issue
Block a user