This is an automated email from the ASF dual-hosted git repository.
doebele pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/empire-db.git
The following commit(s) were added to refs/heads/master by this push:
new a06fb6b3 EMPIREDB-394 fix for bug reported by Jan
a06fb6b3 is described below
commit a06fb6b3cb18eaae9d254d075a628a0b2d719e55
Author: Rainer Döbele <[email protected]>
AuthorDate: Mon Aug 22 09:03:44 2022 +0200
EMPIREDB-394 fix for bug reported by Jan
---
empire-db/src/main/java/org/apache/empire/db/DBSQLBuilder.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/empire-db/src/main/java/org/apache/empire/db/DBSQLBuilder.java
b/empire-db/src/main/java/org/apache/empire/db/DBSQLBuilder.java
index 5f7864ad..d9a088a0 100644
--- a/empire-db/src/main/java/org/apache/empire/db/DBSQLBuilder.java
+++ b/empire-db/src/main/java/org/apache/empire/db/DBSQLBuilder.java
@@ -327,7 +327,7 @@ public abstract class DBSQLBuilder implements Appendable
{ // Boolean from String
boolVal = stringToBoolean(value.toString());
}
- sql.append((boolVal) ? DBSqlPhrase.SQL_BOOLEAN_TRUE :
DBSqlPhrase.SQL_BOOLEAN_FALSE);
+ append((boolVal) ? DBSqlPhrase.SQL_BOOLEAN_TRUE :
DBSqlPhrase.SQL_BOOLEAN_FALSE);
return;
case INTEGER:
case DECIMAL: