Skip to content

Commit

Permalink
Add QUOTED_IDENTIFIER OFF to prepare script in test case (#3142)
Browse files Browse the repository at this point in the history
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 [email protected]
  • Loading branch information
robverschoor authored Nov 22, 2024
1 parent 038044a commit 47014c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/JDBC/expected/unary_plus_op_string-vu-prepare.out
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
set quoted_identifier off
go
create table t1_unary_plus_op_string(i int, vc varchar(30))
go

Expand Down
2 changes: 2 additions & 0 deletions test/JDBC/input/unary_plus_op_string-vu-prepare.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
set quoted_identifier off
go
create table t1_unary_plus_op_string(i int, vc varchar(30))
go

Expand Down

0 comments on commit 47014c7

Please sign in to comment.