mirror of https://github.com/apache/openjpa.git
Fixed bug where mod operator wouldn't get inserted (for databases that support the % mod operator).
git-svn-id: https://svn.apache.org/repos/asf/incubator/openjpa/trunk@497715 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b37a0f0ecf
commit
6b78680b27
|
@ -2381,7 +2381,7 @@ public class DBDictionary
|
|||
else
|
||||
lhs.appendTo(buf);
|
||||
|
||||
if (mod)
|
||||
if (mod && !supportsModOperator)
|
||||
buf.append(", ");
|
||||
else
|
||||
buf.append(" ").append(op).append(" ");
|
||||
|
|
Loading…
Reference in New Issue