Merge pull request #3406 from rdicroce/firebird-upgrade

Firebird: upgrade container to version 4
This commit is contained in:
Jan-Willem Gmelig Meyling 2022-10-06 22:18:38 +02:00 committed by GitHub
commit cdb9022ae8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -93,7 +93,7 @@ services:
start_period: 60s
firebird:
image: jacobalberty/firebird:2.5.9-ss
image: jacobalberty/firebird:v4
ports:
- "3050:3050"
environment:

View File

@ -72,6 +72,8 @@ public class FirebirdTemplates extends SQLTemplates {
add(Ops.StringOps.LOCATE2, "position({0},{1},{2})");
add(Ops.STRING_LENGTH, "char_length({0})");
add(Ops.STRING_IS_EMPTY, "char_length({0}) = 0");
add(Ops.StringOps.LTRIM, "trim (leading from {0})");
add(Ops.StringOps.RTRIM, "trim (trailing from {0})");
add(Ops.AggOps.BOOLEAN_ANY, "any({0})");
add(Ops.AggOps.BOOLEAN_ALL, "all({0})");