• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

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

firtst release


Commit MetaInfo

Révision02d20ed5a0fee68694dd774546d1e795063e365f (tree)
l'heure2016-01-15 12:05:13
AuteurKyotaro Horiguchi <horiguchi.kyotaro@lab....>
CommiterKyotaro Horiguchi

Message de Log

Follow a change of error message.

Context message of PL/pgSQL is changed so this commit refrects it to
exted/pg_hint_plan.out.

Change Summary

Modification

--- a/expected/pg_hint_plan.out
+++ b/expected/pg_hint_plan.out
@@ -3016,7 +3016,7 @@ error hint:
30163016 -> Seq Scan on t2
30173017 (5 rows)
30183018
3019--- inherite table test
3019+-- inheritance tables test
30203020 SET constraint_exclusion TO off;
30213021 EXPLAIN (COSTS false) SELECT * FROM p1 WHERE id >= 50 AND id <= 51 AND p1.ctid = '(1,1)';
30223022 QUERY PLAN
@@ -7983,7 +7983,7 @@ duplication hint:
79837983 error hint:
79847984
79857985 CONTEXT: SQL statement "/*+ SeqScan(t1) */ SELECT * FROM t1"
7986-PL/pgSQL function testfunc() line 3 at EXECUTE statement
7986+PL/pgSQL function testfunc() line 3 at EXECUTE
79877987 testfunc
79887988 ----------
79897989
--- a/sql/pg_hint_plan.sql
+++ b/sql/pg_hint_plan.sql
@@ -338,7 +338,7 @@ EXPLAIN (COSTS false) SELECT * FROM t1 FULL OUTER JOIN t2 ON (t1.id = t2.id);
338338 /*+NestLoop(t1 t2)*/
339339 EXPLAIN (COSTS false) SELECT * FROM t1 FULL OUTER JOIN t2 ON (t1.id = t2.id);
340340
341--- inherite table test
341+-- inheritance tables test
342342 SET constraint_exclusion TO off;
343343 EXPLAIN (COSTS false) SELECT * FROM p1 WHERE id >= 50 AND id <= 51 AND p1.ctid = '(1,1)';
344344 SET constraint_exclusion TO on;