From 5066fe438221d38442f1e422b2fa45da6a0e7568 Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Thu, 30 Mar 2023 13:58:15 +0200 Subject: [PATCH] Use single quotes so that query works both in MySQL and Trino. --- tests/test_integration/test_data_testing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_integration/test_data_testing.py b/tests/test_integration/test_data_testing.py index 919903d..bcd8d28 100644 --- a/tests/test_integration/test_data_testing.py +++ b/tests/test_integration/test_data_testing.py @@ -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 """