firtst release
Révision | 02d20ed5a0fee68694dd774546d1e795063e365f (tree) |
---|---|
l'heure | 2016-01-15 12:05:13 |
Auteur | Kyotaro Horiguchi <horiguchi.kyotaro@lab....> |
Commiter | Kyotaro Horiguchi |
Follow a change of error message.
Context message of PL/pgSQL is changed so this commit refrects it to
exted/pg_hint_plan.out.
@@ -3016,7 +3016,7 @@ error hint: | ||
3016 | 3016 | -> Seq Scan on t2 |
3017 | 3017 | (5 rows) |
3018 | 3018 | |
3019 | --- inherite table test | |
3019 | +-- inheritance tables test | |
3020 | 3020 | SET constraint_exclusion TO off; |
3021 | 3021 | EXPLAIN (COSTS false) SELECT * FROM p1 WHERE id >= 50 AND id <= 51 AND p1.ctid = '(1,1)'; |
3022 | 3022 | QUERY PLAN |
@@ -7983,7 +7983,7 @@ duplication hint: | ||
7983 | 7983 | error hint: |
7984 | 7984 | |
7985 | 7985 | 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 | |
7987 | 7987 | testfunc |
7988 | 7988 | ---------- |
7989 | 7989 |
@@ -338,7 +338,7 @@ EXPLAIN (COSTS false) SELECT * FROM t1 FULL OUTER JOIN t2 ON (t1.id = t2.id); | ||
338 | 338 | /*+NestLoop(t1 t2)*/ |
339 | 339 | EXPLAIN (COSTS false) SELECT * FROM t1 FULL OUTER JOIN t2 ON (t1.id = t2.id); |
340 | 340 | |
341 | --- inherite table test | |
341 | +-- inheritance tables test | |
342 | 342 | SET constraint_exclusion TO off; |
343 | 343 | EXPLAIN (COSTS false) SELECT * FROM p1 WHERE id >= 50 AND id <= 51 AND p1.ctid = '(1,1)'; |
344 | 344 | SET constraint_exclusion TO on; |