1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-18 17:41:14 +03:00

DatabaseMetaData.getSearchString escape was a \ short of working

because both Java's String constructor and pg's input parser strip
off backslashes.
This commit is contained in:
Kris Jurka 2004-08-11 06:40:16 +00:00
parent d508e0ddd2
commit af8e9a44fe

View File

@ -503,7 +503,7 @@ public abstract class AbstractJdbc1DatabaseMetaData
{
if (Driver.logDebug)
Driver.debug("getSearchStringEscape");
return "\\";
return "\\\\";
}
/*