We need to quote identifiers in MySQL so that we can handle columns with names
like group.
This commit is contained in:
@@ -149,7 +149,7 @@ public class MySQLBuilder
|
|||||||
|
|
||||||
@Override protected void appendIdentifier (String field)
|
@Override protected void appendIdentifier (String field)
|
||||||
{
|
{
|
||||||
_builder.append(field);
|
_builder.append("`").append(field).append("`");
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void renderMatch (FullText fullText)
|
protected void renderMatch (FullText fullText)
|
||||||
|
|||||||
Reference in New Issue
Block a user