• R/O
  • HTTP
  • SSH
  • HTTPS

Liste der Commits

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

firtst release


RSS
Rev. Zeit Autor
02823d0 PG94 REL94_1_1_3 2014-12-22 21:17:00 Kyotaro Horiguchi

Prepare for 1.1.3.

2c73975 2014-12-22 20:44:42 Kyotaro Horiguchi

Fixed a bug related to SQL statements in PL/pgSQL functions.

At least since 9.1, true query strings of SQL statements executed in
PL/pgSQL functions were found that were not obtained correctly by the
previous implement, it is because that PLpgSQL_stmt variable did not
have proper query string to be read for hints. Instead, it is changed
to read them from the top of error_context_stack in
pg_hint_plan_planner(). This change made a slight difference in
behavior which doesn't affect its work so a part of the regtest was
also changed. And added some regression tests for it.

09bf8f7 REL94_1_1_2 2014-12-22 11:07:09 Kyotaro Horiguchi

Catch up the changes of pg_stat_statements.c

The change has nothing to do with pg_hint_plan but it's necessary to
catch it up in order to keep the difference minimal for the ease of
maintenance.

9551ee4 2014-12-19 16:14:07 Kyotaro Horiguchi

Prepare for 1.1.2

67bade3 2014-12-19 16:14:07 Kyotaro Horiguchi

Remove unnecessary tracker code from documentations.

1756f49 2014-12-19 15:47:21 Kyotaro Horiguchi

Added English documentation.

73f26fe 2014-12-19 15:47:21 Kyotaro Horiguchi

Some fix and addition to the japaneses document.

It lacked the description about joni direction enforcement so added
it. Addition to it, added html language specification and updated
target PostgreSQL versions and OS version.

2462e13 2014-12-17 11:07:58 Kyotaro Horiguchi

Fix regression test according to the changes of PostgreSQL.

Row countings of EXPLAIN results seems to be changed. This follows the
change.

307cea0 2014-12-17 11:00:29 Kyotaro Horiguchi

Removed a stale comment.

b752a95 2014-12-17 10:52:05 Kyotaro Horiguchi

Fix to remove plpgsql query string on non-local exit.

Pl/pgsql query string stored internally squatted after an execution
error then pg_hint_plan afterward read it for hints and ignores really
given ones. This commit makes it erased at the end of transaction.

bd30598 2014-12-17 10:26:20 Kyotaro Horiguchi

Fix about unexpectedly living plpgsql query string.

pg_hint_plan forgot to erase plpgsql query strings when it is NOT a
static statement, so it continued to read hints from the remenbered
wrong query string after using dynamic execution of a statement. This
commit makes it to be erased for any types of pl/pgsql statement.

c0a2be8 2014-12-17 10:17:18 Kyotaro Horiguchi

Enhance debug output.

Added new debug output levels detailed and verbose. These let you see
more verbose information about what pg_hint_plan does internally.

e4e2df3 2014-12-17 10:12:22 Kyotaro Horiguchi

Revert "Add new join method hint "NestLoop_NM" which means force nested loop"

This reverts commit 7f6e3ce1326751c36676653ef1e81893296860b6.

7f6e3ce 2014-09-18 14:23:15 Kyotaro Horiguchi

Add new join method hint "NestLoop_NM" which means force nested loop
but inhibit materialize of the inner relation.

c02999d 2014-09-18 11:40:14 Kyotaro Horiguchi

Fix a bug that index restriction by name doesn't work for UPDATEs on
inheritance parent.

Inheritance planner doesn't claim for the inheritance parent relation,
so pg_hint_plan_get_relation_info cannot have the chance to prepare
the index spec information for chlid relations. This change make the
function to try to find parent relation even if it is called for the
children with inhparent == false from the first.

4319892 2014-09-17 17:10:18 Kyotaro Horiguchi

Remove unused struct member.

b613607 2014-09-05 13:40:15 Kyotaro Horiguchi

RPM automation

4c4f5cd 2014-09-05 13:40:07 Kyotaro Horiguchi

Change verision to 1.1.1. Change target version to 9.4.

c0f8ca4 2014-09-05 13:26:15 Kyotaro Horiguchi

Make codes copied from PostgreSQL catch up to 9.4

2fbe067 2014-09-05 13:26:11 Kyotaro Horiguchi

Interim support for 9.4beta2. pg_stat_statements.c is replaced with the latest version. Regtests are rearranged and stabilized.

10fa5fe 2014-09-05 12:34:28 Kyotaro Horiguchi

Merge branch 'master' into PG93

5985892 2014-01-24 13:07:00 Takashi Suzuki

リグレッションテストを出力メッセージの変更に対応させた。

70adcee 2014-01-24 11:18:04 Takashi Suzuki

hint_reportの出力メッセージを大文字始まりで統一した。

0175c08 2014-01-21 14:00:28 Takashi Suzuki

コメントやメッセージを修正した。

eec7714 2014-01-17 11:49:38 Takashi Suzuki

コピーライトを更新した

d49ecd4 2014-01-17 11:29:44 Takashi Suzuki

Rowsで外部ファイルを扱う試験を環境に依存しないようにした。

外部ファイルのアドレスを特定の文字列に置き換えることで、環境に依存
しないようにした。

66aab8c 2014-01-17 10:59:42 Takashi Suzuki

Rows関連試験の予測結果を、全試験を流した場合のものに変更した。

c8e2c79 2014-01-17 10:52:44 Takashi Suzuki

Rowsヒント句のメッセージ出力(R-3-6-*)の試験を追加した。

3360920 2014-01-17 10:38:30 Takashi Suzuki

Rowsヒント句の同じテーブル組合せ(R-3-5-*)の試験を追加した。

5b8a802 2014-01-17 10:27:22 Takashi Suzuki

Rowsヒント句の継承テーブル関連(R-3-4-*)の試験を追加した。