if (expr instanceof SQLLiteral)
{
// Just convert the literal value directly
if (((SQLLiteral)expr).getValue() == null)
{
return new StringLiteral(expr.getSQLStatement(), m, null, null);
}
return new StringLiteral(expr.getSQLStatement(), m, ((SQLLiteral)expr).getValue().toString(), null);
}
List args = new ArrayList();
args.add(expr);
List trimArgs = new ArrayList();