• R/O
  • HTTP
  • SSH
  • HTTPS

提交

Frequently used words (click to add to your profile)

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

firtst release


Commit MetaInfo

修订版de6e936d0302c520b27b5c3bea35c357355eeb52 (tree)
时间2019-01-07 18:57:53
作者Kyotaro Horiguchi <horiguchi.kyotaro@lab....>
CommiterKyotaro Horiguchi

Log Message

Adjust regression test

Core behavior has changed, adjust regression test.

更改概述

差异

--- a/expected/pg_hint_plan.out
+++ b/expected/pg_hint_plan.out
@@ -11,13 +11,13 @@ EXPLAIN (COSTS false) SELECT * FROM t1, t2 WHERE t1.id = t2.id;
1111 (4 rows)
1212
1313 EXPLAIN (COSTS false) SELECT * FROM t1, t2 WHERE t1.val = t2.val;
14- QUERY PLAN
15--------------------------------------------
16- Merge Join
17- Merge Cond: (t2.val = t1.val)
18- -> Index Scan using t2_val on t2
19- -> Materialize
20- -> Index Scan using t1_val on t1
14+ QUERY PLAN
15+--------------------------------
16+ Hash Join
17+ Hash Cond: (t2.val = t1.val)
18+ -> Seq Scan on t2
19+ -> Hash
20+ -> Seq Scan on t1
2121 (5 rows)
2222
2323 LOAD 'pg_hint_plan';
@@ -32,13 +32,13 @@ EXPLAIN (COSTS false) SELECT * FROM t1, t2 WHERE t1.id = t2.id;
3232 (4 rows)
3333
3434 EXPLAIN (COSTS false) SELECT * FROM t1, t2 WHERE t1.val = t2.val;
35- QUERY PLAN
36--------------------------------------------
37- Merge Join
38- Merge Cond: (t2.val = t1.val)
39- -> Index Scan using t2_val on t2
40- -> Materialize
41- -> Index Scan using t1_val on t1
35+ QUERY PLAN
36+--------------------------------
37+ Hash Join
38+ Hash Cond: (t2.val = t1.val)
39+ -> Seq Scan on t2
40+ -> Hash
41+ -> Seq Scan on t1
4242 (5 rows)
4343
4444 /*+ Test (t1 t2) */
--- a/output/ut-fdw.source
+++ b/output/ut-fdw.source
@@ -132,17 +132,17 @@ error hint:
132132
133133 \o
134134 \! sql/maskout.sh results/ut-fdw.tmpout
135- Nested Loop (cost=xxx rows=1 width=xxx)
135+ Nested Loop (cost=xxx..xxx rows=1 width=xxx)
136136 Join Filter: (ft_1.id = t1.c1)
137- -> Nested Loop (cost=xxx rows=1 width=xxx)
137+ -> Nested Loop (cost=xxx..xxx rows=1 width=xxx)
138138 Join Filter: (ft_1.id = ft_2.id)
139- -> Foreign Scan on ft1 ft_1 (cost=xxx rows=1 width=xxx)
139+ -> Foreign Scan on ft1 ft_1 (cost=xxx..xxx rows=1 width=xxx)
140140 Foreign File: @abs_srcdir@/data/data.csv
141141 Foreign File Size: 42 b
142- -> Foreign Scan on ft1 ft_2 (cost=xxx rows=1 width=xxx)
142+ -> Foreign Scan on ft1 ft_2 (cost=xxx..xxx rows=1 width=xxx)
143143 Foreign File: @abs_srcdir@/data/data.csv
144144 Foreign File Size: 42 b
145- -> Index Scan using t1_i1 on t1 (cost=xxx rows=1 width=xxx)
145+ -> Index Scan using t1_i1 on t1 (cost=xxx..xxx rows=1 width=xxx)
146146 Index Cond: (c1 = ft_2.id)
147147
148148 \! rm results/ut-fdw.tmpout