OSDN Git Service

Follow a change of error message.
authorKyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
Fri, 15 Jan 2016 00:27:24 +0000 (09:27 +0900)
committerKyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
Fri, 15 Jan 2016 03:05:13 +0000 (12:05 +0900)
Context message of PL/pgSQL is changed so this commit refrects it to
exted/pg_hint_plan.out.

expected/pg_hint_plan.out
sql/pg_hint_plan.sql

index c5790c8..bb67f7e 100644 (file)
@@ -3016,7 +3016,7 @@ error hint:
          ->  Seq Scan on t2
 (5 rows)
 
--- inherite table test
+-- inheritance tables test
 SET constraint_exclusion TO off;
 EXPLAIN (COSTS false) SELECT * FROM p1 WHERE id >= 50 AND id <= 51 AND p1.ctid = '(1,1)';
                               QUERY PLAN                               
@@ -7983,7 +7983,7 @@ duplication hint:
 error hint:
 
 CONTEXT:  SQL statement "/*+ SeqScan(t1) */ SELECT * FROM t1"
-PL/pgSQL function testfunc() line 3 at EXECUTE statement
+PL/pgSQL function testfunc() line 3 at EXECUTE
  testfunc 
 ----------
  
index ae8aac3..6ca894f 100644 (file)
@@ -338,7 +338,7 @@ EXPLAIN (COSTS false) SELECT * FROM t1 FULL OUTER JOIN  t2 ON (t1.id = t2.id);
 /*+NestLoop(t1 t2)*/
 EXPLAIN (COSTS false) SELECT * FROM t1 FULL OUTER JOIN  t2 ON (t1.id = t2.id);
 
--- inherite table test
+-- inheritance tables test
 SET constraint_exclusion TO off;
 EXPLAIN (COSTS false) SELECT * FROM p1 WHERE id >= 50 AND id <= 51 AND p1.ctid = '(1,1)';
 SET constraint_exclusion TO on;