# HG changeset patch
# User Sjoerd Mullender <sjoerd@acm.org>
# Date 1542637801 -3600
# Node ID 37b537a7ad60ac44e4da4e0cb02c9a10ec309f9c
# Parent  27b7166860c8828b46f211526f2b761b6b8f53aa
Use column names that are actually standard SQL.
In SQL, \ is nothing special, so it certainly does not escape " in
"-quoted string.  Therefore use the standard doubled ".
MonetDB currently doesn't handle this doubled " correctly, but that is
a different issue.

diff --git a/tests/BugResultSetMetaData_Bug_6183.java b/tests/BugResultSetMetaData_Bug_6183.java
--- a/tests/BugResultSetMetaData_Bug_6183.java
+++ b/tests/BugResultSetMetaData_Bug_6183.java
@@ -11,7 +11,7 @@ import java.sql.*;
 public class BugResultSetMetaData_Bug_6183 {
 	static final String dqTblName = "\"my dq_table\"";
 	static final String[] dqColNames = { "\"my space\"", "\"my, comma_space\"", "\"my$dollar\"", "\"my#hash\"", "\"my	tab\""
-			, "\"my	,tab_comma\"", "\"my,	comma_tab\"", "\"my\\\"backslash_doublequote\"", "\"Abc\"", "\" \"", "\"123\"" };
+			, "\"my	,tab_comma\"", "\"my,	comma_tab\"", "\"my\"\"double_doublequote\"", "\"Abc\"", "\" \"", "\"123\"" };
 
 	public static void main(String[] args) throws Exception {
 		// Class.forName("nl.cwi.monetdb.jdbc.MonetDriver");	// not needed anymore for self registering JDBC drivers