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:
Marc Prud'hommeaux 2007-01-19 06:32:42 +00:00
parent b37a0f0ecf
commit 6b78680b27
1 changed files with 1 additions and 1 deletions

View File

@ -2381,7 +2381,7 @@ public class DBDictionary
else
lhs.appendTo(buf);
if (mod)
if (mod && !supportsModOperator)
buf.append(", ");
else
buf.append(" ").append(op).append(" ");