Improved Hibernate ORM Firebird dialect support

Mark Rotteveel created a Ticket and Pull Request for Hibernate ORM to improve Firebird dialect with fixes to a number of issues.

Improve Firebird dialect to fix a number of issues:

  • Typing of aggregates when using parameters
  • Add cast to AVG of integral type
  • Quote identifiers starting with an underscore
  • Correct inverted version check for Boolean support
  • Add or update various supports methods to return correct information
  • Render datetime literals without using JDBC escape
  • Fix rendering of literals with offset at offset 00:00
  • Fix rendering of create index statement
  • Fix rendering of CASE where all when clauses have a parameter to identify type of result
  • Add missing rendering of virtual columns to select list
  • Fix rendering of IN against a parameter

Updated a number of tests so they are either passing for Firebird, or ignored for Firebird.

Elixir driver firebirdex status

This article is published on the 5th day of Firebird Advent Calendar 2022 https://qiita.com/advent-calendar/2022/firebird 

and continues from previus blog from Firebird Advent Calendar 2019 https://nakagami.blog.ss-blog.jp/2019-12-22 (article in Japanese language) .

Elixir’s Firebird driver firebirdex https://hex.pm/packages/firebirdex has some features and bug fixes reported and fixed by @hermanius this year.

Added function

– ping() now works https://github.com/nakagami/firebirdex/pull/1
– charset can be specified as connection parameter https://github.com/nakagami/firebirdex/issues/7

bug fix

– nil conversion error https://github. com/nakagami/firebirdex/pull/2
– tatement after query https://github.com/nakagami/firebirdex/pull/5
– Pending transactions https://github.com/nakagami/firebirdex/issues/6

Thanks to @hermanius for the help.

1 2 3 4 5 6 292