Adding upstream version 6.3.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
24cf9d8984
commit
291e0c125c
41 changed files with 1558 additions and 267 deletions
|
@ -45,6 +45,14 @@ def load_sql_fixture_pairs(filename):
|
|||
yield meta, sql, expected
|
||||
|
||||
|
||||
def string_to_bool(string):
|
||||
if string is None:
|
||||
return False
|
||||
if string in (True, False):
|
||||
return string
|
||||
return string and string.lower() in ("true", "1")
|
||||
|
||||
|
||||
TPCH_SCHEMA = {
|
||||
"lineitem": {
|
||||
"l_orderkey": "uint64",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue