• 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

修訂d84beebd39ddb29f0a6abec5868f9dd9f25a9944 (tree)
時間2014-09-17 15:26:57
作者Kyotaro Horiguchi <horiguchi.kyotaro@lab....>
CommiterKyotaro Horiguchi

Log Message

Stabilize regtest

Change Summary

差異

--- a/expected/R_1-6-5.out
+++ b/expected/R_1-6-5.out
@@ -1,18 +1,18 @@
1- QUERY PLAN
2-----------------------------------------------------------------------------
3- Hash Join (cost=xxx rows=612 width=396)
1+ QUERY PLAN
2+------------------------------------------------------------------------
3+ Hash Join (cost=xxx rows=100 width=xxx)
44 Hash Cond: (t1.oid = t2.oid)
5- -> Seq Scan on pg_class t1 (cost=xxx rows=612 width=202)
6- -> Hash (cost=xxx rows=612 width=202)
7- -> Seq Scan on pg_class t2 (cost=xxx rows=612 width=202)
5+ -> Seq Scan on tmpcl t1 (cost=xxx rows=100 width=xxx)
6+ -> Hash (cost=xxx rows=100 width=xxx)
7+ -> Seq Scan on tmpcl t2 (cost=xxx rows=100 width=xxx)
88 (5 rows)
99
10- QUERY PLAN
11-----------------------------------------------------------------------------
12- Hash Join (cost=xxx rows=1 width=396)
10+ QUERY PLAN
11+------------------------------------------------------------------------
12+ Hash Join (cost=xxx rows=1 width=xxx)
1313 Hash Cond: (t1.oid = t2.oid)
14- -> Seq Scan on pg_class t1 (cost=xxx rows=612 width=202)
15- -> Hash (cost=xxx rows=612 width=202)
16- -> Seq Scan on pg_class t2 (cost=xxx rows=612 width=202)
14+ -> Seq Scan on tmpcl t1 (cost=xxx rows=100 width=xxx)
15+ -> Hash (cost=xxx rows=100 width=xxx)
16+ -> Seq Scan on tmpcl t2 (cost=xxx rows=100 width=xxx)
1717 (5 rows)
1818
--- a/expected/ut-R.out
+++ b/expected/ut-R.out
@@ -306,9 +306,11 @@ error hint:
306306 \! diff expected/R_1-6-4.out results/R_1-6-4.out
307307 -- No. R-1-6-5
308308 \o results/R_1-6-5.out.log
309-EXPLAIN SELECT * FROM pg_catalog.pg_class t1, pg_catalog.pg_class t2 WHERE t1.oid = t2.oid;
309+CREATE TABLE tmpcl WITH OIDS AS SELECT * from pg_catalog.pg_class limit 100;
310+ANALYZE tmpcl;
311+EXPLAIN SELECT * FROM tmpcl t1, tmpcl t2 WHERE t1.oid = t2.oid;
310312 /*+Rows(t1 t2 #1)*/
311-EXPLAIN SELECT * FROM pg_catalog.pg_class t1, pg_catalog.pg_class t2 WHERE t1.oid = t2.oid;
313+EXPLAIN SELECT * FROM tmpcl t1, tmpcl t2 WHERE t1.oid = t2.oid;
312314 LOG: pg_hint_plan:
313315 used hint:
314316 Rows(t1 t2 #1)
@@ -317,7 +319,7 @@ duplication hint:
317319 error hint:
318320
319321 \o
320-\! sed 's/cost=[\.0-9]*/cost=xxx/' results/R_1-6-5.out.log > results/R_1-6-5.out
322+\! sed -e 's/cost=[\.0-9]*/cost=xxx/' -e 's/width=[0-9]*/width=xxx/' results/R_1-6-5.out.log > results/R_1-6-5.out
321323 \! diff expected/R_1-6-5.out results/R_1-6-5.out
322324 -- No. R-1-6-6
323325 -- refer ut-fdw.sql
--- a/sql/ut-R.sql
+++ b/sql/ut-R.sql
@@ -190,11 +190,13 @@ EXPLAIN SELECT * FROM tm1 t1, tm1 t2 WHERE t1.c1 = t2.c1;
190190
191191 -- No. R-1-6-5
192192 \o results/R_1-6-5.out.log
193-EXPLAIN SELECT * FROM pg_catalog.pg_class t1, pg_catalog.pg_class t2 WHERE t1.oid = t2.oid;
193+CREATE TABLE tmpcl WITH OIDS AS SELECT * from pg_catalog.pg_class limit 100;
194+ANALYZE tmpcl;
195+EXPLAIN SELECT * FROM tmpcl t1, tmpcl t2 WHERE t1.oid = t2.oid;
194196 /*+Rows(t1 t2 #1)*/
195-EXPLAIN SELECT * FROM pg_catalog.pg_class t1, pg_catalog.pg_class t2 WHERE t1.oid = t2.oid;
197+EXPLAIN SELECT * FROM tmpcl t1, tmpcl t2 WHERE t1.oid = t2.oid;
196198 \o
197-\! sed 's/cost=[\.0-9]*/cost=xxx/' results/R_1-6-5.out.log > results/R_1-6-5.out
199+\! sed -e 's/cost=[\.0-9]*/cost=xxx/' -e 's/width=[0-9]*/width=xxx/' results/R_1-6-5.out.log > results/R_1-6-5.out
198200 \! diff expected/R_1-6-5.out results/R_1-6-5.out
199201
200202 -- No. R-1-6-6