Commit 9cf599bf authored by Quxl's avatar Quxl

x

parent ca2d60c0
...@@ -340,7 +340,7 @@ public interface Dialect { ...@@ -340,7 +340,7 @@ public interface Dialect {
wheres.add(getColumnLeft() + key + getColumnRight() + " is null"); wheres.add(getColumnLeft() + key + getColumnRight() + " is null");
} else { } else {
wheres.add(getColumnLeft() + key + getColumnRight() + " = ?"); wheres.add(getColumnLeft() + key + getColumnRight() + " = ?");
args.add(objMap.get(key)); args.add(val);
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment