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:
parent
d508e0ddd2
commit
af8e9a44fe
@ -503,7 +503,7 @@ public abstract class AbstractJdbc1DatabaseMetaData
|
||||
{
|
||||
if (Driver.logDebug)
|
||||
Driver.debug("getSearchStringEscape");
|
||||
return "\\";
|
||||
return "\\\\";
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user