Fix standard_conforming_strings for postgres

This commit is contained in:
Anatoliy Chakkaev 2012-09-13 23:35:11 +04:00
parent 2baabb624f
commit 26905651a1
1 changed files with 1 additions and 1 deletions

View File

@ -510,7 +510,7 @@ function escape(val) {
default: return "\\"+s;
}
});
return "'"+val+"'";
return "E'"+val+"'";
};
function datatype(p) {