OSDN Git Service

Add ChangeLog
authorKyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
Fri, 6 Jun 2014 07:07:22 +0000 (16:07 +0900)
committerKyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
Mon, 9 Jun 2014 06:28:23 +0000 (15:28 +0900)
ChangeLog [new file with mode: 0644]
ChangeLog.ja [new file with mode: 0644]

diff --git a/ChangeLog b/ChangeLog
new file mode 100644 (file)
index 0000000..a168fc3
--- /dev/null
+++ b/ChangeLog
@@ -0,0 +1,26 @@
+2014-06-06 Kyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
+       * pg_dbms_stats.c: pg_dbms_stats no more causes planner to access
+       repeatedly to the tables of pg_dbms_stats for nonexistent saved
+       statistics during considering access paths involving tables or
+       indexes that don't have their statistics 'lock'ed. This change
+       improves the performance especially for light weight (which means
+       taking less than a few milliseconds) queries on no-locked
+       tables/indexes.
+
+       * pg_dbms_stats.c: Fix a bug potentially causes SEGV crash.
+       しました。
+
+       * pg_dbms_stats--*.sql, pg_dbms_stats.control: Now declares the
+       right version to the extension framework. ALTER EXTENSION can be
+       used to upgrade from the older versions.
+
+2013-11-07 Kyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
+       * Fixed a bug potentially cause SEGV after changing column data
+       types on 'lock'ed tables
+
+       * Added clean_up_stats() function, which erases all saved
+       statistics left alone after deleting tables before unlocking
+       staistics.
+
+2013-11-07 Kyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
+       * First published version.
diff --git a/ChangeLog.ja b/ChangeLog.ja
new file mode 100644 (file)
index 0000000..6f982fb
--- /dev/null
@@ -0,0 +1,23 @@
+2014-06-06 Kyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
+       *ロックされていないテーブル/カラムに関する実行計画作成中に
+       pg_dbms_statsの統計情報管理テーブルへの不要なアクセスを行わないよう
+       になりました。これによりロックを行っていないテーブル/インデックス等
+       への軽量な問い合わせ(数ミリ秒程度以内で完了するようなもの)への性能
+       の影響が軽減されます。
+
+       *特定の条件でSEGVを発生する可能性があるバグを修正しました。
+
+       *機能拡張としてのバージョンを正しく設定するように修正しました。 旧
+       バージョンからのALTER EXTENSIONが可能です。
+
+2013-11-07 Kyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
+       *ロックしたテーブルにおいてデータ型を変更するとSEGVを引き起こすこと
+       が有るバグの修正
+
+       *clean_up_stats()関数を実装。ロックを解除せずに列やテーブルを削除す
+       ると、使用しないダミー統計情報が残ります。この関数はこの残されたダ
+       ミー統計情報を一括削除します。
+
+2013-11-07 Kyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
+       *公開初版
+