We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d642f5 commit a17a256Copy full SHA for a17a256
src/test/java/testsuite/regression/StatementRegressionTest.java
@@ -14615,7 +14615,7 @@ public void testBug107543_IntoFile() throws Exception {
14615
Path dataFilePath = Paths.get(filePrivDir, "testbug107543.dat");
14616
for (String statement : new String[] { "SELECT * FROM", "TABLE" }) {
14617
for (String outType : new String[] { "OUTFILE", "DUMPFILE" }) {
14618
- final String sql = statement + " testBug107543 INTO " + outType + " '" + dataFilePath.toString() + "'";
+ final String sql = statement + " testBug107543 INTO " + outType + " '" + dataFilePath.toString().replace("\\", "\\\\") + "'";
14619
14620
// Test 1: execute() with INTO [OUTFILE | DUMPFILE]
14621
try {
0 commit comments