mirror of
https://github.com/cldellow/sqlite-parquet-vtable.git
synced 2025-04-03 09:39:47 +00:00
Add supporting cases and data to runner
This commit is contained in:
parent
e5fcb02c5d
commit
6f058db523
@ -11,7 +11,7 @@ shared_library('parquet',
|
||||
sources: sources
|
||||
)
|
||||
|
||||
test('Load the extension', find_program('tests/test-smoke'))
|
||||
test('Try loading an unsupported file', find_program('tests/test-bad-create-table'))
|
||||
test('Try loading a non-existent file', find_program('tests/test-non-existent'))
|
||||
subdir('tests')
|
||||
#test('Try loading a non-existent file', find_program('tests/test-non-existent'))
|
||||
#test('Try loading an unsupported file', find_program('tests/test-bad-create-table'))
|
||||
|
||||
|
67
runner.py
67
runner.py
@ -1,67 +0,0 @@
|
||||
#!/usr/bin/python3
|
||||
import argparse
|
||||
import os
|
||||
import subprocess
|
||||
|
||||
DESCRIPTION = '''sqlite-parquet-vtable test runner
|
||||
Run a query against several data files with varying encodings,
|
||||
and verify that the output matches an expected value
|
||||
'''
|
||||
|
||||
COMMON_QUERY_LINES = [
|
||||
'.echo off',
|
||||
'.load ./libparquet',
|
||||
]
|
||||
|
||||
|
||||
def read(filename):
|
||||
'''Take a filename, read it into a variable -- critically, closing it after we're done'''
|
||||
with open(filename) as file:
|
||||
return file.read()
|
||||
|
||||
|
||||
def dispatch(query_file, results_file, expected_exit_code, datasets):
|
||||
'''Run a query against assorted formats of the datasets, verifying the result each time'''
|
||||
query = read(query_file)
|
||||
expected_results = read(results_file)
|
||||
for dataset in datasets:
|
||||
for file in os.listdir(dataset):
|
||||
if not file.endswith('.parquet'):
|
||||
print(f'Ignoring {file} -- does not end in .parquet')
|
||||
continue
|
||||
vtable_statement = f'CREATE VIRTUAL TABLE dataset USING parquet(\'{file}\');'
|
||||
# Append test-specified query to common lines, insert \n between lines
|
||||
full_query = '\n'.join(COMMON_QUERY_LINES+[vtable_statement, query])
|
||||
proc = subprocess.run(
|
||||
'sqlite3',
|
||||
stdout=subprocess.PIPE,
|
||||
input=full_query,
|
||||
encoding='UTF-8',
|
||||
check=False
|
||||
)
|
||||
assert proc.returncode == expected_exit_code
|
||||
assert proc.stdout == expected_results
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
PARSER = argparse.ArgumentParser(description=DESCRIPTION)
|
||||
PARSER.add_argument('query', metavar='query', help='the .sql file containing the query')
|
||||
PARSER.add_argument('results', help='the file containing .output format expected results')
|
||||
PARSER.add_argument('exit_code', help='the exit code you expect to recieve')
|
||||
PARSER.add_argument('dataset', nargs='+', help='a dataset to run the query against')
|
||||
|
||||
ARGS = PARSER.parse_args()
|
||||
|
||||
# Verify that each query and result file exist
|
||||
assert os.path.isfile(ARGS.query)
|
||||
assert os.path.isfile(ARGS.results)
|
||||
# Verify that each dataset argument is a folder (ideally with .parquet files inside)
|
||||
for dataset_dir in ARGS.dataset:
|
||||
assert os.path.isdir(dataset_dir)
|
||||
|
||||
dispatch(
|
||||
query_file=ARGS.query,
|
||||
results_file=ARGS.results,
|
||||
expected_exit_code=ARGS.exit_code,
|
||||
datasets=ARGS.dataset
|
||||
)
|
0
tests/NOTHING
Normal file
0
tests/NOTHING
Normal file
@ -1,65 +0,0 @@
|
||||
#!/usr/bin/python3
|
||||
|
||||
import os.path
|
||||
from os import makedirs
|
||||
from glob import glob
|
||||
import re
|
||||
import itertools
|
||||
|
||||
NULL_TOKENS = ['nulls', 'nulls1', 'nulls2', 'nulls3']
|
||||
NO_NULL_TOKENS = ['no_nulls', 'no_nulls1', 'no_nulls2', 'no_nulls3']
|
||||
|
||||
TOKEN_SET = NULL_TOKENS + NO_NULL_TOKENS
|
||||
|
||||
def extract_tokens(line):
|
||||
line = re.sub('[^a-zA-Z0-9_]', ' ', line).split(' ')
|
||||
return list(set([token for token in line if token in TOKEN_SET]))
|
||||
|
||||
def main(template_dir, query_dir):
|
||||
try:
|
||||
makedirs(query_dir)
|
||||
except:
|
||||
pass
|
||||
|
||||
for f in glob(os.path.join(query_dir, '*')):
|
||||
os.remove(f)
|
||||
|
||||
for f in glob(os.path.join(template_dir, '*.sql')):
|
||||
basename = os.path.basename(f)
|
||||
|
||||
with open(f, 'r') as fptr:
|
||||
content = fptr.readlines()
|
||||
|
||||
# Sort tokens longest first so string replace will replace no_nullsX before nullsX
|
||||
# (irrelevant ATM, but maybe useful later)
|
||||
tokens = sorted(extract_tokens(content[0]), key=lambda x: -len(x))
|
||||
if not tokens:
|
||||
raise ValueError('{} had no tokens'.format(content[0]))
|
||||
|
||||
# For simplicity, we don't support mixing nulls and no_nulls
|
||||
if not all(len(token) == len(tokens[0]) for token in tokens):
|
||||
raise ValueError('cannot mix nulls and no_nulls: {}'.format(content[0]))
|
||||
|
||||
|
||||
template = content[0]
|
||||
for token in tokens:
|
||||
template = template.replace(token, token.upper())
|
||||
|
||||
replacements = NULL_TOKENS
|
||||
if tokens[0].startswith('no'):
|
||||
replacements = NO_NULL_TOKENS
|
||||
|
||||
for variant, choices in enumerate(itertools.combinations_with_replacement(replacements, len(tokens))):
|
||||
query = template
|
||||
for idx, token in enumerate(tokens):
|
||||
query = query.replace(token.upper(), choices[idx])
|
||||
fname = basename.replace('.sql', '-{}.sql'.format(variant))
|
||||
|
||||
with open(os.path.join(query_dir, fname), 'w') as fptr:
|
||||
content[0] = query
|
||||
fptr.write(''.join(content))
|
||||
|
||||
if __name__ == '__main__':
|
||||
template_dir = os.path.abspath(os.path.join(__file__, '..', 'templates'))
|
||||
query_dir = os.path.abspath(os.path.join(__file__, '..', 'queries'))
|
||||
main(template_dir, query_dir)
|
@ -1,10 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
query=${1:?must provide query}
|
||||
|
||||
echo "$query"
|
||||
psql parquet postgres <<EOF
|
||||
COPY ($query) TO STDOUT WITH (DELIMITER '|', NULL '');
|
||||
EOF
|
BIN
tests/datasets/no-nulls/99-rows_groupsize-1.parquet
Normal file
BIN
tests/datasets/no-nulls/99-rows_groupsize-1.parquet
Normal file
Binary file not shown.
BIN
tests/datasets/no-nulls/99-rows_groupsize-10.parquet
Normal file
BIN
tests/datasets/no-nulls/99-rows_groupsize-10.parquet
Normal file
Binary file not shown.
BIN
tests/datasets/no-nulls/99-rows_groupsize-99.parquet
Normal file
BIN
tests/datasets/no-nulls/99-rows_groupsize-99.parquet
Normal file
Binary file not shown.
9
tests/meson.build
Normal file
9
tests/meson.build
Normal file
@ -0,0 +1,9 @@
|
||||
|
||||
# For more test args see https://mesonbuild.com/Unit-tests.html#other-test-options
|
||||
runner = find_program('runner.py')
|
||||
|
||||
test('Load the extension', runner, args: files('NOTHING', 'NOTHING')+['0'])
|
||||
test('Try loading a non-existent file', runner, args: files('./segfault-safety/nonexistent-file.sql', 'NOTHING')+['1'])
|
||||
test('Try loading an unspecified file', runner, args: files('./segfault-safety/unspecified-file.sql', 'NOTHING')+['1'])
|
||||
test('Try loading an unsupported file', runner, args: files('NOTHING', 'NOTHING')+['1','unsupported'])
|
||||
test('Load all supported test files', runner, args: files('./segfault-safety/load-valid-file/query.sql', './segfault-safety/load-valid-file/results.txt')+['0','no-nulls','nulls'])
|
77
tests/runner.py
Normal file
77
tests/runner.py
Normal file
@ -0,0 +1,77 @@
|
||||
#!/usr/bin/python3
|
||||
import argparse
|
||||
import os
|
||||
import subprocess
|
||||
|
||||
DESCRIPTION = '''sqlite-parquet-vtable test runner
|
||||
Run a query against several data files with varying encodings,
|
||||
and verify that the output matches an expected value
|
||||
'''
|
||||
|
||||
COMMON_QUERY_LINES = [
|
||||
'.echo off',
|
||||
'.load ./libparquet',
|
||||
]
|
||||
|
||||
TEST_ROOT = os.path.dirname(os.path.abspath(__file__))
|
||||
|
||||
def read(filename):
|
||||
'''Take a filename, read it into a variable -- critically, closing it after we're done'''
|
||||
with open(filename) as file:
|
||||
return file.read()
|
||||
|
||||
def run_and_verify(query, expected_results, expected_exit_code):
|
||||
'''Run a given query, compare the results and error code'''
|
||||
proc = subprocess.run(
|
||||
'sqlite3',
|
||||
stdout=subprocess.PIPE,
|
||||
input=query,
|
||||
encoding='UTF-8',
|
||||
check=False
|
||||
)
|
||||
assert proc.returncode == expected_exit_code, f'Expected exit code {expected_exit_code}, found {proc.returncode}'
|
||||
assert proc.stdout == expected_results, f'Expected stdout to be {expected_results}, it was actually {proc.stdout}'
|
||||
|
||||
def dispatch(query_file, results_file, expected_exit_code, datasets):
|
||||
'''Run a query against assorted formats of the datasets, verifying the result each time'''
|
||||
query = read(query_file)
|
||||
expected_results = read(results_file)
|
||||
# Some of the error test cases don't need multiple datasets
|
||||
if len(datasets) == 0:
|
||||
run_and_verify(query, expected_results, expected_exit_code)
|
||||
|
||||
# For most tests, run against all members of a dataset
|
||||
for dataset in datasets:
|
||||
for file in os.listdir(TEST_ROOT+'/datasets/'+dataset):
|
||||
filepath = TEST_ROOT+'/datasets/'+dataset+'/'+file
|
||||
if not filepath.endswith('.parquet'):
|
||||
print(f'Ignoring {file} -- does not end in .parquet')
|
||||
continue
|
||||
vtable_statement = f'CREATE VIRTUAL TABLE dataset USING parquet(\'{filepath}\');'
|
||||
# Append test-specified query to common lines, insert \n between lines
|
||||
full_query = '\n'.join(COMMON_QUERY_LINES+[vtable_statement, query])
|
||||
run_and_verify(full_query, expected_results, expected_exit_code)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
PARSER = argparse.ArgumentParser(description=DESCRIPTION)
|
||||
PARSER.add_argument('query', help='the .sql file containing the query to run')
|
||||
PARSER.add_argument('results', help='the file containing the expected result of the query')
|
||||
PARSER.add_argument('exit_code', help='the exit code you expect to recieve')
|
||||
PARSER.add_argument('dataset', nargs='*', help='a dataset to run the query against')
|
||||
|
||||
ARGS = PARSER.parse_args()
|
||||
|
||||
# Verify that each query and result file exist
|
||||
assert os.path.isfile(ARGS.query), f'Expected to find query file at {ARGS.query}'
|
||||
assert os.path.isfile(ARGS.results), f'Expected to find results file at {ARGS.results}'
|
||||
# Verify that each dataset argument is a folder (ideally with .parquet files inside)
|
||||
for dataset_dir in ARGS.dataset:
|
||||
assert os.path.isdir(TEST_ROOT+'/datasets/'+dataset_dir), f'Expected dataset to be a directory'
|
||||
|
||||
dispatch(
|
||||
query_file=ARGS.query,
|
||||
results_file=ARGS.results,
|
||||
expected_exit_code=int(ARGS.exit_code),
|
||||
datasets=ARGS.dataset
|
||||
)
|
1
tests/segfault-safety/load-valid-file/query.sql
Normal file
1
tests/segfault-safety/load-valid-file/query.sql
Normal file
@ -0,0 +1 @@
|
||||
SELECT * FROM dataset LIMIT 1;
|
1
tests/segfault-safety/load-valid-file/results.txt
Normal file
1
tests/segfault-safety/load-valid-file/results.txt
Normal file
@ -0,0 +1 @@
|
||||
1|50|5000|50000000|50000000000|490665600000|99.0|0|000|||1.0
|
1
tests/segfault-safety/nonexistent-file.sql
Normal file
1
tests/segfault-safety/nonexistent-file.sql
Normal file
@ -0,0 +1 @@
|
||||
CREATE VIRTUAL TABLE test USING parquet('$doesnotexist.parquet');
|
1
tests/segfault-safety/unspecified-file.sql
Normal file
1
tests/segfault-safety/unspecified-file.sql
Normal file
@ -0,0 +1 @@
|
||||
CREATE VIRTUAL TABLE test USING parquet;
|
@ -1,100 +0,0 @@
|
||||
SELECT rowid, bool_0, int8_1, int16_2, int32_3, int64_4, datetime(ts_5 / 1000, 'unixepoch'), printf('%.2f', double_6) AS double_6, string_7, string_8, quote(binary_9), quote(binary_10) FROM no_nulls1
|
||||
1|1|50|5000|50000000|50000000000|1985-07-20 00:00:00|99.00|0|000|X'00'|X'00'
|
||||
2|0|49|4900|49000000|49000000000|1985-07-21 00:00:00|49.50|1|001|X'0101'|X'01'
|
||||
3|1|48|4800|48000000|48000000000|1985-07-22 00:00:00|33.00|2|002|X'020202'|X'02'
|
||||
4|0|47|4700|47000000|47000000000|1985-07-23 00:00:00|24.75|3|003|X'03030303'|X'03'
|
||||
5|1|46|4600|46000000|46000000000|1985-07-24 00:00:00|19.80|4|004|X'0404040404'|X'04'
|
||||
6|0|45|4500|45000000|45000000000|1985-07-25 00:00:00|16.50|5|005|X'05'|X'05'
|
||||
7|1|44|4400|44000000|44000000000|1985-07-26 00:00:00|14.14|6|006|X'0606'|X'06'
|
||||
8|0|43|4300|43000000|43000000000|1985-07-27 00:00:00|12.38|7|007|X'070707'|X'07'
|
||||
9|1|42|4200|42000000|42000000000|1985-07-28 00:00:00|11.00|8|008|X'08080808'|X'08'
|
||||
10|0|41|4100|41000000|41000000000|1985-07-29 00:00:00|9.90|9|009|X'0909090909'|X'09'
|
||||
11|1|40|4000|40000000|40000000000|1985-07-30 00:00:00|9.00|10|010|X'0A'|X'0A'
|
||||
12|0|39|3900|39000000|39000000000|1985-07-31 00:00:00|8.25|11|011|X'0B0B'|X'0B'
|
||||
13|1|38|3800|38000000|38000000000|1985-08-01 00:00:00|7.62|12|012|X'0C0C0C'|X'0C'
|
||||
14|0|37|3700|37000000|37000000000|1985-08-02 00:00:00|7.07|13|013|X'0D0D0D0D'|X'0D'
|
||||
15|1|36|3600|36000000|36000000000|1985-08-03 00:00:00|6.60|14|014|X'0E0E0E0E0E'|X'0E'
|
||||
16|0|35|3500|35000000|35000000000|1985-08-04 00:00:00|6.19|15|015|X'0F'|X'0F'
|
||||
17|1|34|3400|34000000|34000000000|1985-08-05 00:00:00|5.82|16|016|X'1010'|X'10'
|
||||
18|0|33|3300|33000000|33000000000|1985-08-06 00:00:00|5.50|17|017|X'111111'|X'11'
|
||||
19|1|32|3200|32000000|32000000000|1985-08-07 00:00:00|5.21|18|018|X'12121212'|X'12'
|
||||
20|0|31|3100|31000000|31000000000|1985-08-08 00:00:00|4.95|19|019|X'1313131313'|X'13'
|
||||
21|1|30|3000|30000000|30000000000|1985-08-09 00:00:00|4.71|20|020|X'14'|X'14'
|
||||
22|0|29|2900|29000000|29000000000|1985-08-10 00:00:00|4.50|21|021|X'1515'|X'15'
|
||||
23|1|28|2800|28000000|28000000000|1985-08-11 00:00:00|4.30|22|022|X'161616'|X'16'
|
||||
24|0|27|2700|27000000|27000000000|1985-08-12 00:00:00|4.13|23|023|X'17171717'|X'17'
|
||||
25|1|26|2600|26000000|26000000000|1985-08-13 00:00:00|3.96|24|024|X'1818181818'|X'18'
|
||||
26|0|25|2500|25000000|25000000000|1985-08-14 00:00:00|3.81|25|025|X'19'|X'19'
|
||||
27|1|24|2400|24000000|24000000000|1985-08-15 00:00:00|3.67|26|026|X'1A1A'|X'1A'
|
||||
28|0|23|2300|23000000|23000000000|1985-08-16 00:00:00|3.54|27|027|X'1B1B1B'|X'1B'
|
||||
29|1|22|2200|22000000|22000000000|1985-08-17 00:00:00|3.41|28|028|X'1C1C1C1C'|X'1C'
|
||||
30|0|21|2100|21000000|21000000000|1985-08-18 00:00:00|3.30|29|029|X'1D1D1D1D1D'|X'1D'
|
||||
31|1|20|2000|20000000|20000000000|1985-08-19 00:00:00|3.19|30|030|X'1E'|X'1E'
|
||||
32|0|19|1900|19000000|19000000000|1985-08-20 00:00:00|3.09|31|031|X'1F1F'|X'1F'
|
||||
33|1|18|1800|18000000|18000000000|1985-08-21 00:00:00|3.00|32|032|X'202020'|X'20'
|
||||
34|0|17|1700|17000000|17000000000|1985-08-22 00:00:00|2.91|33|033|X'21212121'|X'21'
|
||||
35|1|16|1600|16000000|16000000000|1985-08-23 00:00:00|2.83|34|034|X'2222222222'|X'22'
|
||||
36|0|15|1500|15000000|15000000000|1985-08-24 00:00:00|2.75|35|035|X'23'|X'23'
|
||||
37|1|14|1400|14000000|14000000000|1985-08-25 00:00:00|2.68|36|036|X'2424'|X'24'
|
||||
38|0|13|1300|13000000|13000000000|1985-08-26 00:00:00|2.61|37|037|X'252525'|X'25'
|
||||
39|1|12|1200|12000000|12000000000|1985-08-27 00:00:00|2.54|38|038|X'26262626'|X'26'
|
||||
40|0|11|1100|11000000|11000000000|1985-08-28 00:00:00|2.48|39|039|X'2727272727'|X'27'
|
||||
41|1|10|1000|10000000|10000000000|1985-08-29 00:00:00|2.41|40|040|X'28'|X'28'
|
||||
42|0|9|900|9000000|9000000000|1985-08-30 00:00:00|2.36|41|041|X'2929'|X'29'
|
||||
43|1|8|800|8000000|8000000000|1985-08-31 00:00:00|2.30|42|042|X'2A2A2A'|X'2A'
|
||||
44|0|7|700|7000000|7000000000|1985-09-01 00:00:00|2.25|43|043|X'2B2B2B2B'|X'2B'
|
||||
45|1|6|600|6000000|6000000000|1985-09-02 00:00:00|2.20|44|044|X'2C2C2C2C2C'|X'2C'
|
||||
46|0|5|500|5000000|5000000000|1985-09-03 00:00:00|2.15|45|045|X'2D'|X'2D'
|
||||
47|1|4|400|4000000|4000000000|1985-09-04 00:00:00|2.11|46|046|X'2E2E'|X'2E'
|
||||
48|0|3|300|3000000|3000000000|1985-09-05 00:00:00|2.06|47|047|X'2F2F2F'|X'2F'
|
||||
49|1|2|200|2000000|2000000000|1985-09-06 00:00:00|2.02|48|048|X'30303030'|X'30'
|
||||
50|0|1|100|1000000|1000000000|1985-09-07 00:00:00|1.98|49|049|X'3131313131'|X'31'
|
||||
51|1|0|0|0|0|1985-09-08 00:00:00|1.94|50|050|X'32'|X'32'
|
||||
52|0|-1|-100|-1000000|-1000000000|1985-09-09 00:00:00|1.90|51|051|X'3333'|X'33'
|
||||
53|1|-2|-200|-2000000|-2000000000|1985-09-10 00:00:00|1.87|52|052|X'343434'|X'34'
|
||||
54|0|-3|-300|-3000000|-3000000000|1985-09-11 00:00:00|1.83|53|053|X'35353535'|X'35'
|
||||
55|1|-4|-400|-4000000|-4000000000|1985-09-12 00:00:00|1.80|54|054|X'3636363636'|X'36'
|
||||
56|0|-5|-500|-5000000|-5000000000|1985-09-13 00:00:00|1.77|55|055|X'37'|X'37'
|
||||
57|1|-6|-600|-6000000|-6000000000|1985-09-14 00:00:00|1.74|56|056|X'3838'|X'38'
|
||||
58|0|-7|-700|-7000000|-7000000000|1985-09-15 00:00:00|1.71|57|057|X'393939'|X'39'
|
||||
59|1|-8|-800|-8000000|-8000000000|1985-09-16 00:00:00|1.68|58|058|X'3A3A3A3A'|X'3A'
|
||||
60|0|-9|-900|-9000000|-9000000000|1985-09-17 00:00:00|1.65|59|059|X'3B3B3B3B3B'|X'3B'
|
||||
61|1|-10|-1000|-10000000|-10000000000|1985-09-18 00:00:00|1.62|60|060|X'3C'|X'3C'
|
||||
62|0|-11|-1100|-11000000|-11000000000|1985-09-19 00:00:00|1.60|61|061|X'3D3D'|X'3D'
|
||||
63|1|-12|-1200|-12000000|-12000000000|1985-09-20 00:00:00|1.57|62|062|X'3E3E3E'|X'3E'
|
||||
64|0|-13|-1300|-13000000|-13000000000|1985-09-21 00:00:00|1.55|63|063|X'3F3F3F3F'|X'3F'
|
||||
65|1|-14|-1400|-14000000|-14000000000|1985-09-22 00:00:00|1.52|64|064|X'4040404040'|X'40'
|
||||
66|0|-15|-1500|-15000000|-15000000000|1985-09-23 00:00:00|1.50|65|065|X'41'|X'41'
|
||||
67|1|-16|-1600|-16000000|-16000000000|1985-09-24 00:00:00|1.48|66|066|X'4242'|X'42'
|
||||
68|0|-17|-1700|-17000000|-17000000000|1985-09-25 00:00:00|1.46|67|067|X'434343'|X'43'
|
||||
69|1|-18|-1800|-18000000|-18000000000|1985-09-26 00:00:00|1.43|68|068|X'44444444'|X'44'
|
||||
70|0|-19|-1900|-19000000|-19000000000|1985-09-27 00:00:00|1.41|69|069|X'4545454545'|X'45'
|
||||
71|1|-20|-2000|-20000000|-20000000000|1985-09-28 00:00:00|1.39|70|070|X'46'|X'46'
|
||||
72|0|-21|-2100|-21000000|-21000000000|1985-09-29 00:00:00|1.38|71|071|X'4747'|X'47'
|
||||
73|1|-22|-2200|-22000000|-22000000000|1985-09-30 00:00:00|1.36|72|072|X'484848'|X'48'
|
||||
74|0|-23|-2300|-23000000|-23000000000|1985-10-01 00:00:00|1.34|73|073|X'49494949'|X'49'
|
||||
75|1|-24|-2400|-24000000|-24000000000|1985-10-02 00:00:00|1.32|74|074|X'4A4A4A4A4A'|X'4A'
|
||||
76|0|-25|-2500|-25000000|-25000000000|1985-10-03 00:00:00|1.30|75|075|X'4B'|X'4B'
|
||||
77|1|-26|-2600|-26000000|-26000000000|1985-10-04 00:00:00|1.29|76|076|X'4C4C'|X'4C'
|
||||
78|0|-27|-2700|-27000000|-27000000000|1985-10-05 00:00:00|1.27|77|077|X'4D4D4D'|X'4D'
|
||||
79|1|-28|-2800|-28000000|-28000000000|1985-10-06 00:00:00|1.25|78|078|X'4E4E4E4E'|X'4E'
|
||||
80|0|-29|-2900|-29000000|-29000000000|1985-10-07 00:00:00|1.24|79|079|X'4F4F4F4F4F'|X'4F'
|
||||
81|1|-30|-3000|-30000000|-30000000000|1985-10-08 00:00:00|1.22|80|080|X'50'|X'50'
|
||||
82|0|-31|-3100|-31000000|-31000000000|1985-10-09 00:00:00|1.21|81|081|X'5151'|X'51'
|
||||
83|1|-32|-3200|-32000000|-32000000000|1985-10-10 00:00:00|1.19|82|082|X'525252'|X'52'
|
||||
84|0|-33|-3300|-33000000|-33000000000|1985-10-11 00:00:00|1.18|83|083|X'53535353'|X'53'
|
||||
85|1|-34|-3400|-34000000|-34000000000|1985-10-12 00:00:00|1.16|84|084|X'5454545454'|X'54'
|
||||
86|0|-35|-3500|-35000000|-35000000000|1985-10-13 00:00:00|1.15|85|085|X'55'|X'55'
|
||||
87|1|-36|-3600|-36000000|-36000000000|1985-10-14 00:00:00|1.14|86|086|X'5656'|X'56'
|
||||
88|0|-37|-3700|-37000000|-37000000000|1985-10-15 00:00:00|1.13|87|087|X'575757'|X'57'
|
||||
89|1|-38|-3800|-38000000|-38000000000|1985-10-16 00:00:00|1.11|88|088|X'58585858'|X'58'
|
||||
90|0|-39|-3900|-39000000|-39000000000|1985-10-17 00:00:00|1.10|89|089|X'5959595959'|X'59'
|
||||
91|1|-40|-4000|-40000000|-40000000000|1985-10-18 00:00:00|1.09|90|090|X'5A'|X'5A'
|
||||
92|0|-41|-4100|-41000000|-41000000000|1985-10-19 00:00:00|1.08|91|091|X'5B5B'|X'5B'
|
||||
93|1|-42|-4200|-42000000|-42000000000|1985-10-20 00:00:00|1.06|92|092|X'5C5C5C'|X'5C'
|
||||
94|0|-43|-4300|-43000000|-43000000000|1985-10-21 00:00:00|1.05|93|093|X'5D5D5D5D'|X'5D'
|
||||
95|1|-44|-4400|-44000000|-44000000000|1985-10-22 00:00:00|1.04|94|094|X'5E5E5E5E5E'|X'5E'
|
||||
96|0|-45|-4500|-45000000|-45000000000|1985-10-23 00:00:00|1.03|95|095|X'5F'|X'5F'
|
||||
97|1|-46|-4600|-46000000|-46000000000|1985-10-24 00:00:00|1.02|96|096|X'6060'|X'60'
|
||||
98|0|-47|-4700|-47000000|-47000000000|1985-10-25 00:00:00|1.01|97|097|X'616161'|X'61'
|
||||
99|1|-48|-4800|-48000000|-48000000000|1985-10-26 00:00:00|1.00|98|098|X'62626262'|X'62'
|
@ -1,2 +0,0 @@
|
||||
select count(*) from (select * from no_nulls1 t1, no_nulls1 t2);
|
||||
9801
|
@ -1,2 +0,0 @@
|
||||
select count(*) from (select * from no_nulls1 t1, no_nulls2 t2);
|
||||
9801
|
@ -1,2 +0,0 @@
|
||||
select int8_1 from no_nulls1 where rowid = 51;
|
||||
0
|
@ -1,2 +0,0 @@
|
||||
select int8_1 from no_nulls1 where rowid = 56;
|
||||
-5
|
@ -1,2 +0,0 @@
|
||||
SELECT SUM(CASE WHEN bool_0 IS NULL THEN 1 ELSE 0 END), SUM(CASE WHEN int8_1 IS NULL THEN 1 ELSE 0 END), SUM(CASE WHEN int16_2 IS NULL THEN 1 ELSE 0 END), SUM(CASE WHEN int32_3 IS NULL THEN 1 ELSE 0 END), SUM(CASE WHEN int64_4 IS NULL THEN 1 ELSE 0 END), SUM(CASE WHEN ts_5 IS NULL THEN 1 ELSE 0 END), SUM(CASE WHEN double_6 IS NULL THEN 1 ELSE 0 END), SUM(CASE WHEN string_7 IS NULL THEN 1 ELSE 0 END), SUM(CASE WHEN string_8 IS NULL THEN 1 ELSE 0 END), SUM(CASE WHEN binary_9 IS NULL THEN 1 ELSE 0 END), SUM(CASE WHEN binary_10 IS NULL THEN 1 ELSE 0 END) from nulls1;
|
||||
50|49|50|49|50|49|50|49|50|49|50
|
@ -1,11 +0,0 @@
|
||||
select rowid % 10, count(*) from nulls1 group by 1 order by 1
|
||||
0|9
|
||||
1|10
|
||||
2|10
|
||||
3|10
|
||||
4|10
|
||||
5|10
|
||||
6|10
|
||||
7|10
|
||||
8|10
|
||||
9|10
|
@ -1,100 +0,0 @@
|
||||
select string_7 from no_nulls1 order by string_7
|
||||
0
|
||||
1
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
2
|
||||
20
|
||||
21
|
||||
22
|
||||
23
|
||||
24
|
||||
25
|
||||
26
|
||||
27
|
||||
28
|
||||
29
|
||||
3
|
||||
30
|
||||
31
|
||||
32
|
||||
33
|
||||
34
|
||||
35
|
||||
36
|
||||
37
|
||||
38
|
||||
39
|
||||
4
|
||||
40
|
||||
41
|
||||
42
|
||||
43
|
||||
44
|
||||
45
|
||||
46
|
||||
47
|
||||
48
|
||||
49
|
||||
5
|
||||
50
|
||||
51
|
||||
52
|
||||
53
|
||||
54
|
||||
55
|
||||
56
|
||||
57
|
||||
58
|
||||
59
|
||||
6
|
||||
60
|
||||
61
|
||||
62
|
||||
63
|
||||
64
|
||||
65
|
||||
66
|
||||
67
|
||||
68
|
||||
69
|
||||
7
|
||||
70
|
||||
71
|
||||
72
|
||||
73
|
||||
74
|
||||
75
|
||||
76
|
||||
77
|
||||
78
|
||||
79
|
||||
8
|
||||
80
|
||||
81
|
||||
82
|
||||
83
|
||||
84
|
||||
85
|
||||
86
|
||||
87
|
||||
88
|
||||
89
|
||||
9
|
||||
90
|
||||
91
|
||||
92
|
||||
93
|
||||
94
|
||||
95
|
||||
96
|
||||
97
|
||||
98
|
@ -1,100 +0,0 @@
|
||||
select string_8 from no_nulls1 order by string_8
|
||||
000
|
||||
001
|
||||
002
|
||||
003
|
||||
004
|
||||
005
|
||||
006
|
||||
007
|
||||
008
|
||||
009
|
||||
010
|
||||
011
|
||||
012
|
||||
013
|
||||
014
|
||||
015
|
||||
016
|
||||
017
|
||||
018
|
||||
019
|
||||
020
|
||||
021
|
||||
022
|
||||
023
|
||||
024
|
||||
025
|
||||
026
|
||||
027
|
||||
028
|
||||
029
|
||||
030
|
||||
031
|
||||
032
|
||||
033
|
||||
034
|
||||
035
|
||||
036
|
||||
037
|
||||
038
|
||||
039
|
||||
040
|
||||
041
|
||||
042
|
||||
043
|
||||
044
|
||||
045
|
||||
046
|
||||
047
|
||||
048
|
||||
049
|
||||
050
|
||||
051
|
||||
052
|
||||
053
|
||||
054
|
||||
055
|
||||
056
|
||||
057
|
||||
058
|
||||
059
|
||||
060
|
||||
061
|
||||
062
|
||||
063
|
||||
064
|
||||
065
|
||||
066
|
||||
067
|
||||
068
|
||||
069
|
||||
070
|
||||
071
|
||||
072
|
||||
073
|
||||
074
|
||||
075
|
||||
076
|
||||
077
|
||||
078
|
||||
079
|
||||
080
|
||||
081
|
||||
082
|
||||
083
|
||||
084
|
||||
085
|
||||
086
|
||||
087
|
||||
088
|
||||
089
|
||||
090
|
||||
091
|
||||
092
|
||||
093
|
||||
094
|
||||
095
|
||||
096
|
||||
097
|
||||
098
|
@ -1,50 +0,0 @@
|
||||
select rowid, bool_0, quote(binary_10) from nulls1 where string_7 is null
|
||||
11||NULL
|
||||
12||NULL
|
||||
13||NULL
|
||||
14||NULL
|
||||
15||NULL
|
||||
16||NULL
|
||||
17||NULL
|
||||
18||NULL
|
||||
19||NULL
|
||||
20||NULL
|
||||
22|0|X'15'
|
||||
24|0|X'17'
|
||||
26|0|X'19'
|
||||
28|0|X'1B'
|
||||
30|0|X'1D'
|
||||
32|0|X'1F'
|
||||
34|0|X'21'
|
||||
36|0|X'23'
|
||||
38|0|X'25'
|
||||
40|0|X'27'
|
||||
42|0|X'29'
|
||||
44|0|X'2B'
|
||||
46|0|X'2D'
|
||||
48|0|X'2F'
|
||||
50|0|X'31'
|
||||
52|0|X'33'
|
||||
54|0|X'35'
|
||||
56|0|X'37'
|
||||
58|0|X'39'
|
||||
60|0|X'3B'
|
||||
62|0|X'3D'
|
||||
64|0|X'3F'
|
||||
66|0|X'41'
|
||||
68|0|X'43'
|
||||
70|0|X'45'
|
||||
72|0|X'47'
|
||||
74|0|X'49'
|
||||
76|0|X'4B'
|
||||
78|0|X'4D'
|
||||
80|0|X'4F'
|
||||
82|0|X'51'
|
||||
84|0|X'53'
|
||||
86|0|X'55'
|
||||
88|0|X'57'
|
||||
90|0|X'59'
|
||||
92|0|X'5B'
|
||||
94|0|X'5D'
|
||||
96|0|X'5F'
|
||||
98|0|X'61'
|
@ -1,51 +0,0 @@
|
||||
select rowid, bool_0, quote(binary_10) from nulls1 where string_7 is not null
|
||||
1|1|X'00'
|
||||
2|0|X'01'
|
||||
3|1|X'02'
|
||||
4|0|X'03'
|
||||
5|1|X'04'
|
||||
6|0|X'05'
|
||||
7|1|X'06'
|
||||
8|0|X'07'
|
||||
9|1|X'08'
|
||||
10|0|X'09'
|
||||
21||NULL
|
||||
23||NULL
|
||||
25||NULL
|
||||
27||NULL
|
||||
29||NULL
|
||||
31||NULL
|
||||
33||NULL
|
||||
35||NULL
|
||||
37||NULL
|
||||
39||NULL
|
||||
41||NULL
|
||||
43||NULL
|
||||
45||NULL
|
||||
47||NULL
|
||||
49||NULL
|
||||
51||NULL
|
||||
53||NULL
|
||||
55||NULL
|
||||
57||NULL
|
||||
59||NULL
|
||||
61||NULL
|
||||
63||NULL
|
||||
65||NULL
|
||||
67||NULL
|
||||
69||NULL
|
||||
71||NULL
|
||||
73||NULL
|
||||
75||NULL
|
||||
77||NULL
|
||||
79||NULL
|
||||
81||NULL
|
||||
83||NULL
|
||||
85||NULL
|
||||
87||NULL
|
||||
89||NULL
|
||||
91||NULL
|
||||
93||NULL
|
||||
95||NULL
|
||||
97||NULL
|
||||
99||NULL
|
@ -1,2 +0,0 @@
|
||||
select string_7, string_8 from nulls1 where string_8 like '%0'
|
||||
0|000
|
@ -1 +0,0 @@
|
||||
select string_7, string_8 from nulls1 where string_8 like '0'
|
@ -1,50 +0,0 @@
|
||||
select string_7, string_8 from nulls1 where string_8 like '0%'
|
||||
0|000
|
||||
1|001
|
||||
2|002
|
||||
3|003
|
||||
4|004
|
||||
5|005
|
||||
6|006
|
||||
7|007
|
||||
8|008
|
||||
9|009
|
||||
|021
|
||||
|023
|
||||
|025
|
||||
|027
|
||||
|029
|
||||
|031
|
||||
|033
|
||||
|035
|
||||
|037
|
||||
|039
|
||||
|041
|
||||
|043
|
||||
|045
|
||||
|047
|
||||
|049
|
||||
|051
|
||||
|053
|
||||
|055
|
||||
|057
|
||||
|059
|
||||
|061
|
||||
|063
|
||||
|065
|
||||
|067
|
||||
|069
|
||||
|071
|
||||
|073
|
||||
|075
|
||||
|077
|
||||
|079
|
||||
|081
|
||||
|083
|
||||
|085
|
||||
|087
|
||||
|089
|
||||
|091
|
||||
|093
|
||||
|095
|
||||
|097
|
@ -1,2 +0,0 @@
|
||||
select string_7, string_8 from nulls1 where string_8 like '0_0'
|
||||
0|000
|
@ -1,3 +0,0 @@
|
||||
select string_8 from nulls1 where string_8 > '010' and string_8 < '024'
|
||||
021
|
||||
023
|
@ -1,2 +0,0 @@
|
||||
select string_8 from nulls1 where string_8 >= '021' and string_8 <= '021'
|
||||
021
|
@ -1,2 +0,0 @@
|
||||
select string_8 from nulls1 where string_8 = '021'
|
||||
021
|
@ -1,2 +0,0 @@
|
||||
select string_8 from nulls1 where rowid = 22 and string_8 = '021'
|
||||
021
|
@ -1 +0,0 @@
|
||||
select string_8 from nulls1 where rowid = 22 and string_8 <> '021'
|
@ -1,2 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 = 30
|
||||
30
|
@ -1,2 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 < -46
|
||||
-48
|
@ -1,3 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 <= -46
|
||||
-46
|
||||
-48
|
@ -1,2 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 > 49
|
||||
50
|
@ -1,3 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 >= 49
|
||||
50
|
||||
49
|
@ -1 +0,0 @@
|
||||
select int8_1 from nulls1 where rowid = 66 and int8_1 <> -16
|
@ -1,3 +0,0 @@
|
||||
select int64_4 from nulls1 where int64_4 >= 49000000000
|
||||
50000000000
|
||||
49000000000
|
@ -1,2 +0,0 @@
|
||||
select int64_4 from nulls1 where int64_4 > 49000000000
|
||||
50000000000
|
@ -1,2 +0,0 @@
|
||||
select int64_4 from nulls1 where int64_4 = 49000000000
|
||||
49000000000
|
@ -1,2 +0,0 @@
|
||||
select int64_4 from nulls1 where int64_4 < -46000000000
|
||||
-47000000000
|
@ -1,3 +0,0 @@
|
||||
select int64_4 from nulls1 where int64_4 <= -45000000000
|
||||
-45000000000
|
||||
-47000000000
|
@ -1 +0,0 @@
|
||||
select int64_4 from nulls1 where rowid = 57 and int64_4 <> -7000000000
|
@ -1,2 +0,0 @@
|
||||
select int64_4 from nulls1 where rowid = 58 and int64_4 <> -8000000000
|
||||
-7000000000
|
@ -1,2 +0,0 @@
|
||||
select printf('%.2f', double_6) as double_6 from nulls1 where double_6 = 99.0
|
||||
99.00
|
@ -1,2 +0,0 @@
|
||||
select printf('%.2f', double_6) as double_6 from nulls1 where double_6 > 98.0
|
||||
99.00
|
@ -1,3 +0,0 @@
|
||||
select printf('%.2f', double_6) as double_6 from nulls1 where double_6 >= 49.5
|
||||
99.00
|
||||
49.50
|
@ -1,2 +0,0 @@
|
||||
select printf('%.2f', double_6) from nulls1 where double_6 < 99.0 order by double_6 desc limit 1
|
||||
49.50
|
@ -1,2 +0,0 @@
|
||||
select printf('%.2f', double_6) from nulls1 where double_6 <= 99.0 order by double_6 desc limit 1
|
||||
99.00
|
@ -1 +0,0 @@
|
||||
select printf('%.2f', double_6) from nulls1 where rowid = 0 and double_6 <> 99.0
|
@ -1,2 +0,0 @@
|
||||
select printf('%.2f', double_6) from nulls1 where rowid = 1 and double_6 <> 100.0
|
||||
99.00
|
@ -1,2 +0,0 @@
|
||||
select rowid from nulls1 where binary_10 = x'01';
|
||||
2
|
@ -1 +0,0 @@
|
||||
select rowid from nulls1 where rowid = 2 and binary_10 <> x'01';
|
@ -1,2 +0,0 @@
|
||||
select rowid from nulls1 where binary_10 < x'01';
|
||||
1
|
@ -1,3 +0,0 @@
|
||||
select rowid from nulls1 where binary_10 <= x'01' order by 1;
|
||||
1
|
||||
2
|
@ -1,2 +0,0 @@
|
||||
select rowid from nulls1 where binary_10 > x'60';
|
||||
98
|
@ -1,3 +0,0 @@
|
||||
select rowid from nulls1 where binary_10 >= x'5F' order by 1;
|
||||
96
|
||||
98
|
@ -1,2 +0,0 @@
|
||||
select nn1.int8_1 from no_nulls1 nn1 join no_nulls2 nn2 using (int8_1) where nn1.int8_1 = 0;
|
||||
0
|
@ -1,2 +0,0 @@
|
||||
select count(*) from no_nulls1 where rowid > 100
|
||||
0
|
@ -1,2 +0,0 @@
|
||||
select count(*) from no_nulls1 where rowid >= 100
|
||||
0
|
@ -1,2 +0,0 @@
|
||||
select count(*) from no_nulls1 where rowid < 0
|
||||
0
|
@ -1,2 +0,0 @@
|
||||
select count(*) from no_nulls1 where rowid < -1
|
||||
0
|
@ -1,2 +0,0 @@
|
||||
select count(*) from no_nulls1 where rowid <= 1
|
||||
1
|
@ -1,2 +0,0 @@
|
||||
select count(*) from no_nulls1 where rowid < 2
|
||||
1
|
@ -1,2 +0,0 @@
|
||||
select count(*) from no_nulls1 where rowid <> 1
|
||||
98
|
@ -1,2 +0,0 @@
|
||||
select count(*) from no_nulls1 where rowid is null
|
||||
0
|
@ -1,2 +0,0 @@
|
||||
select count(*) from no_nulls1 where rowid is not null
|
||||
99
|
@ -1,2 +0,0 @@
|
||||
select count(*) from no_nulls1 where rowid = '1'
|
||||
1
|
@ -1,2 +0,0 @@
|
||||
select int8_1 from no_nulls1 where rowid = 51.0;
|
||||
0
|
@ -1,2 +0,0 @@
|
||||
select string_7 from nulls1 where string_7 = 22;
|
||||
22
|
@ -1 +0,0 @@
|
||||
select string_7 from nulls1 where string_7 = 22.0;
|
@ -1,2 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 = 30.0;
|
||||
30
|
@ -1,2 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 = '30.0';
|
||||
30
|
@ -1,2 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 = '30';
|
||||
30
|
@ -1 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 = '30f';
|
@ -1,2 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 < '-46'
|
||||
-48
|
@ -1,2 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 < -46.0
|
||||
-48
|
@ -1,3 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 <= '-46'
|
||||
-46
|
||||
-48
|
@ -1,3 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 <= -46.0
|
||||
-46
|
||||
-48
|
@ -1,2 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 > '49'
|
||||
50
|
@ -1,2 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 > 49.0
|
||||
50
|
@ -1,3 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 >= '49'
|
||||
50
|
||||
49
|
@ -1,3 +0,0 @@
|
||||
select int8_1 from nulls1 where int8_1 >= 49.0
|
||||
50
|
||||
49
|
@ -1 +0,0 @@
|
||||
select int8_1 from nulls1 where rowid = 66 and int8_1 <> '-16'
|
@ -1 +0,0 @@
|
||||
select int8_1 from nulls1 where rowid = 66 and int8_1 <> -16.0
|
@ -1,3 +0,0 @@
|
||||
select int64_4 from nulls1 where int64_4 >= '49000000000'
|
||||
50000000000
|
||||
49000000000
|
@ -1,3 +0,0 @@
|
||||
select int64_4 from nulls1 where int64_4 >= 49000000000.0
|
||||
50000000000
|
||||
49000000000
|
@ -1,2 +0,0 @@
|
||||
select int64_4 from nulls1 where int64_4 > '49000000000'
|
||||
50000000000
|
@ -1,2 +0,0 @@
|
||||
select int64_4 from nulls1 where int64_4 > 49000000000.0
|
||||
50000000000
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user