-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #58 - enable NO_BACKSLASH_ESCAPE sql mode in connection
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# name: test/sql/insert_backslash.test | ||
# description: Issue #58 - value is "\" can not copy to mysql | ||
# group: [sql] | ||
|
||
require mysql_scanner | ||
|
||
require-env MYSQL_TEST_DATABASE_AVAILABLE | ||
|
||
statement ok | ||
ATTACH 'host=localhost user=root port=0 database=mysqlscanner' AS msql (TYPE MYSQL_SCANNER) | ||
|
||
statement ok | ||
USE msql | ||
|
||
statement ok | ||
CREATE OR REPLACE TABLE backslash_tbl(v VARCHAR); | ||
|
||
statement ok | ||
INSERT INTO backslash_tbl VALUES ('\') | ||
|
||
query I | ||
SELECT * FROM backslash_tbl | ||
---- | ||
\ |