Fix for #192 - Backslash literal in LIKE expression - Postgres (and H2, MySql) behaviour

This commit is contained in:
Rob Bygrave
2014-10-08 21:42:39 +13:00
parent 6ed1f25e22
commit 5d09ca16d6
14 changed files with 152 additions and 23 deletions
@@ -71,6 +71,9 @@ public abstract class DeployParser {
sb.append(deployWord);
if (pos < sourceLength) {
sb.append(wordTerminator);
if (wordTerminator == SINGLE_QUOTE) {
readLiteral();
}
}
}