From 80eed9e2d6555919876aba10e400c8cb8e0da942 Mon Sep 17 00:00:00 2001 From: Kevin Biju Date: Wed, 3 Jan 2024 20:37:19 +0530 Subject: [PATCH] making the test infra respect mixedCase once more pt.1 --- flow/e2e/test_utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flow/e2e/test_utils.go b/flow/e2e/test_utils.go index c2337f21d0..1ed60196eb 100644 --- a/flow/e2e/test_utils.go +++ b/flow/e2e/test_utils.go @@ -64,7 +64,7 @@ func GetPgRows(pool *pgxpool.Pool, suffix string, tableName string, cols string) pgQueryExecutor.SetTestEnv(true) return pgQueryExecutor.ExecuteAndProcessQuery( - fmt.Sprintf("SELECT %s FROM e2e_test_%s.%s ORDER BY id", cols, suffix, tableName), + fmt.Sprintf(`SELECT %s FROM e2e_test_%s."%s" ORDER BY id`, cols, suffix, tableName), ) }