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

Also compare queries against SQLite itself

This commit is contained in:
Colin Dellow
2018-03-18 17:49:12 -04:00
parent e2af2a07a4
commit 7f2042742b
6 changed files with 300 additions and 17 deletions

View File

@@ -6,8 +6,8 @@ from glob import glob
import re
import itertools
NULL_TOKENS = ['nulls1', 'nulls2', 'nulls3']
NO_NULL_TOKENS = ['no_nulls1', 'no_nulls2', 'no_nulls3']
NULL_TOKENS = ['nulls', 'nulls1', 'nulls2', 'nulls3']
NO_NULL_TOKENS = ['no_nulls', 'no_nulls1', 'no_nulls2', 'no_nulls3']
TOKEN_SET = NULL_TOKENS + NO_NULL_TOKENS