From 32ddbd9d4953d3c617debf4ffc29275f0e67f9ad Mon Sep 17 00:00:00 2001 From: Kuba Kaflik Date: Mon, 25 Mar 2024 15:02:29 +0100 Subject: [PATCH] fix test --- tests/issues/1247_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/issues/1247_test.go b/tests/issues/1247_test.go index ad9388ef93..0b5695434c 100644 --- a/tests/issues/1247_test.go +++ b/tests/issues/1247_test.go @@ -26,6 +26,6 @@ func Test1247(t *testing.T) { conn.Exec(ctx, "DROP TABLE IF EXISTS test_1247") }() - _, err = conn.PrepareBatch(context.Background(), "INSERT INTO test_1247 (`ColumnNameWithParentheses(something)`) VALUES (\"test\")") + _, err = conn.PrepareBatch(context.Background(), "INSERT INTO test_1247 (`ColumnNameWithParentheses(something)`)") require.NoError(t, err) }