From 47014c7f1abb28f05a49e8591da5a7fb7d9fcb94 Mon Sep 17 00:00:00 2001 From: Rob Verschoor <91290800+robverschoor@users.noreply.github.com> Date: Fri, 22 Nov 2024 07:45:03 +0000 Subject: [PATCH] Add QUOTED_IDENTIFIER OFF to prepare script in test case (#3142) Adds SET QUOTED_IDENTIFIER OFF to the prepare script of test case unary_plus_op_string-vu-prepare.sql. This will make the test run correctly even when it is executed in a context where QUOTED_IDENTIFIER happens to be ON. Signed-off-by: Rob Verschoor rcv@amazon.com --- test/JDBC/expected/unary_plus_op_string-vu-prepare.out | 2 ++ test/JDBC/input/unary_plus_op_string-vu-prepare.sql | 2 ++ 2 files changed, 4 insertions(+) diff --git a/test/JDBC/expected/unary_plus_op_string-vu-prepare.out b/test/JDBC/expected/unary_plus_op_string-vu-prepare.out index fa33ec42ae..c53ab72ebd 100644 --- a/test/JDBC/expected/unary_plus_op_string-vu-prepare.out +++ b/test/JDBC/expected/unary_plus_op_string-vu-prepare.out @@ -1,3 +1,5 @@ +set quoted_identifier off +go create table t1_unary_plus_op_string(i int, vc varchar(30)) go diff --git a/test/JDBC/input/unary_plus_op_string-vu-prepare.sql b/test/JDBC/input/unary_plus_op_string-vu-prepare.sql index fa33ec42ae..c53ab72ebd 100644 --- a/test/JDBC/input/unary_plus_op_string-vu-prepare.sql +++ b/test/JDBC/input/unary_plus_op_string-vu-prepare.sql @@ -1,3 +1,5 @@ +set quoted_identifier off +go create table t1_unary_plus_op_string(i int, vc varchar(30)) go