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
@@ -44,9 +44,14 @@ public interface SpiExpressionRequest {
* Return the ordered list of bind values for all expressions in this request.
*/
public ArrayList<Object> getBindValues();
/**
* Increments the parameter index and returns that value.
*/
public int nextParameter();
/**
* Increments the parameter index and returns that value.
*/
public int nextParameter();
/**
* Append a DB Like clause.
*/
public void appendLike();
}