mirror of
https://github.com/cldellow/sqlite-parquet-vtable.git
synced 2025-04-03 09:39:47 +00:00
test rowid IS NULL
Found via coverage
This commit is contained in:
parent
80adb804b4
commit
fd06ec5a23
1
tests/templates/142-rowid-is-null.sql
Normal file
1
tests/templates/142-rowid-is-null.sql
Normal file
@ -0,0 +1 @@
|
||||
SELECT * FROM nulls WHERE rowid IS NULL
|
@ -94,6 +94,7 @@ def test_table(conn, table):
|
||||
all_values = []
|
||||
for values in column_values.values():
|
||||
all_values = all_values + values
|
||||
print(all_values)
|
||||
for i in range(1000):
|
||||
test_statement(conn, table, column_values, all_values)
|
||||
|
||||
@ -107,5 +108,5 @@ def test_db(db_file, extension_file, tables):
|
||||
|
||||
if __name__ == '__main__':
|
||||
db_file = os.path.abspath(os.path.join(__file__, '..', '..', 'test.db'))
|
||||
extension_file = os.path.abspath(os.path.join(__file__, '..', '..', 'build', 'linux', 'libparquet.so'))
|
||||
extension_file = os.path.abspath(os.path.join(__file__, '..', '..', 'build', 'linux', 'libparquet'))
|
||||
test_db(db_file, extension_file, ['nulls', 'no_nulls'])
|
||||
|
Loading…
x
Reference in New Issue
Block a user