Skip to content

Commit

Permalink
Fix scaffolding error with Firebird 2.5 caused by boolean conversion (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
eMuonTau authored Jul 15, 2024
1 parent 9d572ea commit 69502b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ private void GetPrimaryKeys(DbConnection connection, IReadOnlyList<DatabaseTable
@"SELECT
trim(I.rdb$index_name) as INDEX_NAME,
COALESCE(I.rdb$unique_flag, 0) as IS_UNIQUE,
Coalesce(I.rdb$index_type, 0) = 1 as IS_DESC,
Coalesce(I.rdb$index_type, 0) as IS_DESC,
list(trim(sg.RDB$FIELD_NAME)) as COLUMNS
FROM
RDB$INDICES i
Expand Down

0 comments on commit 69502b3

Please sign in to comment.