Skip to content

Commit

Permalink
HHH-8500 Interbase does not have a boolean type
Browse files Browse the repository at this point in the history
  • Loading branch information
ArloL authored and brmeyer committed Sep 12, 2013
1 parent f08ede4 commit ea7f1e8
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -58,6 +58,7 @@ public InterbaseDialect() {
registerColumnType( Types.NUMERIC, "numeric($p,$s)" );
registerColumnType( Types.BLOB, "blob" );
registerColumnType( Types.CLOB, "blob sub_type 1" );
registerColumnType( Types.BOOLEAN, "smallint" );

registerFunction( "concat", new VarArgsSQLFunction( StandardBasicTypes.STRING, "(","||",")" ) );
registerFunction( "current_date", new NoArgSQLFunction( "current_date", StandardBasicTypes.DATE, false ) );
Expand Down

0 comments on commit ea7f1e8

Please sign in to comment.