Releases: orafce/orafce
Releases · orafce/orafce
3.24.4
fix update script broken in previous release
3.24.3
fix update script from 3.21 to 3.22 for PostgreSQL older than 12
3.24.2
fix missing oracle.mod functions in update scripts
3.24.1
bugfix - issues reported and fixed by Sergey Shinderuk
- disable nlssort test on non linux systems
- fix possible race condition in memory initialization of dbms_pipe package
3.24.0
Types varchar2 and nvarchar2 used PLAIN TOAST storage strategy. With this strategy, the limit of strings is data page size (for full row).
This is wrong, and because these types are created over varchar type, it should to use same strategy EXTENDED.
3.23.0
- fix formula in plvdate_isleapyear function
- fix support for PostgreSQL 9.5
3.22.1
- fix possible read past the allocated memory in function to_single_byte
- strong reduce of int overflow (increase range of returned values) in function dbms_utility.get_time()
3.22.0
- cleaning catalog - all objects from public and pg_catalog schema are moved to oracle schema
3.21.1
fix mswin build
3.21.0
- backporting regexp_replace and regexp_instr from PostgreSQL 15
the code is faster, and more robust than PLpgSQL implementation