Use single quotes so that query works both in MySQL and Trino.

This commit is contained in:
Pablo Martin 2023-03-30 13:58:15 +02:00
parent 19211eee73
commit 5066fe4382

View file

@ -21,7 +21,7 @@ TEST_LOLACONFIG = build_lolaconfig(flow_name="testing-suite")
TEST_QUERY = """
SELECT 1 AS a_one,
"lol" AS a_string,
'lol' AS a_string,
NULL AS a_null
"""