Release Notes
English
This is the latest maintenance release for pg_bulkload 3.1.
In this version, Separate 2 branches :
one for support PostgreSQL 13 branche and one for support PostgreSQL 12 or under version.
When using PostgreSQL 13, use the master branch(pg_bulkload-3.1.17.tar.gz),
and when using 12 or under version, use the REL_UNDER_PG13_STABLE branch(pg_bulkload-3.1.17-UNDER-PG13.tar.gz).
Also, the following issues remain in the branch related to the master branch(pg_bulkload-3.1.17.tar.gz).
- Binary conversion does not work properly when reading text data from a user-defined function.
This is a problem when reading text data of a user-define function while using the "-o TYPE=FUNCTION" option of pg_bulkload.
This problem will fix in the next version.
Change Log
- Added support for PostgreSQL 13
- Fixed a crash when merging B-tree indexes (Sincerely thank you, Haruka Takatsuka-san, for reporting the problem and suggesting a solution.)
Japanese
これは3.1系列の最新のリリースとなります。
このバージョンより、PostgreSQL 13をサポートしています。
今回のバージョンからは2つのブランチに分離しました。
PostgreSQLバージョン13以上を使用する場合にはmasterブランチ(pg_bulkload-3.1.17.tar.gz)を使用し、
PostgreSQLバージョン12以下を使用する場合はREL_UNDER_PG13_STABLEブランチ(pg_bulkload-3.1.17-UNDER-PG13.tar.gz)を使用します。
また、今回のバージョンのmasterブランチ(pg_bulkload-3.1.17.tar.gz)では、下記のような問題点が残されています。
- pg_bulkloadの "-o TYPE=FUNCTION" オプションを使用して、ユーザが定義した関数からテキストデータを読み込むとき、正常にデータがロードされない。
この問題は次のバージョンで修正される予定です。
変更点
- PostgreSQL 13に対応
- Bツリーインデックスに対してマージする場合、エラーが発生した問題を解決しました