mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-03-01 01:37:00 +08: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:
@ -503,7 +503,7 @@ public abstract class AbstractJdbc1DatabaseMetaData
|
||||
{
|
||||
if (Driver.logDebug)
|
||||
Driver.debug("getSearchStringEscape");
|
||||
return "\\";
|
||||
return "\\\\";
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user