We need to quote identifiers in MySQL so that we can handle columns with names

like group.
This commit is contained in:
Michael Bayne
2011-05-04 18:40:24 +00:00
parent fd4be08c78
commit 72c4782b3c
@@ -149,7 +149,7 @@ public class MySQLBuilder
@Override protected void appendIdentifier (String field)
{
_builder.append(field);
_builder.append("`").append(field).append("`");
}
protected void renderMatch (FullText fullText)