firtst release
Revision | ce19272adf7f1c0a3aed0b7825bd4fd07cced965 (tree) |
---|---|
Time | 2014-01-30 15:42:06 |
Author | Takashi Suzuki <suzuki.takashi@metr...> |
Commiter | Takashi Suzuki |
出力メッセージ変更後の状態にリグレッションテストの予測結果を変更した。
@@ -8148,7 +8148,7 @@ Rows(t1 t2 #aa) | ||
8148 | 8148 | /*+ Rows(t1 t2 /99) */ |
8149 | 8149 | EXPLAIN SELECT * FROM t1 JOIN t2 ON (t1.id = t2.id); -- ERROR |
8150 | 8150 | INFO: hint syntax error at or near "/99" |
8151 | -DETAIL: unrecognized rows value type notation. | |
8151 | +DETAIL: Unrecognized rows value type notation. | |
8152 | 8152 | LOG: pg_hint_plan: |
8153 | 8153 | used hint: |
8154 | 8154 | not used hint: |
@@ -8167,7 +8167,7 @@ Rows(t1 t2 /99) | ||
8167 | 8167 | -- round up to 1 |
8168 | 8168 | /*+ Rows(t1 t2 -99999) */ |
8169 | 8169 | EXPLAIN SELECT * FROM t1 JOIN t2 ON (t1.id = t2.id); |
8170 | -WARNING: make rows estimation 1 since below 1 : Rows(t1 t2 -99999) | |
8170 | +WARNING: Force estimate to be at least one row, to avoid possible divide-by-zero when interpolating costs : Rows(t1 t2 -99999) | |
8171 | 8171 | LOG: pg_hint_plan: |
8172 | 8172 | used hint: |
8173 | 8173 | Rows(t1 t2 -99999) |
@@ -497,7 +497,7 @@ Rows(t1 #1) | ||
497 | 497 | /*+Rows(t1 t2 1)*/ |
498 | 498 | EXPLAIN SELECT * FROM s1.t1, s1.t2 WHERE t1.c1 = t2.c1; |
499 | 499 | INFO: hint syntax error at or near "1" |
500 | -DETAIL: unrecognized rows value type notation. | |
500 | +DETAIL: Unrecognized rows value type notation. | |
501 | 501 | LOG: pg_hint_plan: |
502 | 502 | used hint: |
503 | 503 | not used hint: |
@@ -2183,7 +2183,7 @@ error hint: | ||
2183 | 2183 | \o results/R_3-1-1.out.log |
2184 | 2184 | /*+Rows(t1 t2 #0)*/ |
2185 | 2185 | EXPLAIN SELECT * FROM s1.t1, s1.t2 WHERE t1.c1 = t2.c1; |
2186 | -WARNING: make rows estimation 1 since below 1 : Rows(t1 t2 #0) | |
2186 | +WARNING: Force estimate to be at least one row, to avoid possible divide-by-zero when interpolating costs : Rows(t1 t2 #0) | |
2187 | 2187 | LOG: pg_hint_plan: |
2188 | 2188 | used hint: |
2189 | 2189 | Rows(t1 t2 #0) |
@@ -2243,7 +2243,7 @@ error hint: | ||
2243 | 2243 | \o results/R_3-2-3.out.log |
2244 | 2244 | /*+Rows(t1 t2 -1000)*/ |
2245 | 2245 | EXPLAIN SELECT * FROM s1.t1, s1.t2 WHERE t1.c1 = t2.c1; |
2246 | -WARNING: make rows estimation 1 since below 1 : Rows(t1 t2 -1000) | |
2246 | +WARNING: Force estimate to be at least one row, to avoid possible divide-by-zero when interpolating costs : Rows(t1 t2 -1000) | |
2247 | 2247 | LOG: pg_hint_plan: |
2248 | 2248 | used hint: |
2249 | 2249 | Rows(t1 t2 -1000) |
@@ -2261,7 +2261,7 @@ error hint: | ||
2261 | 2261 | \o results/R_3-3-1.out.log |
2262 | 2262 | /*+Rows(t1 t2 *0)*/ |
2263 | 2263 | EXPLAIN SELECT * FROM s1.t1, s1.t2 WHERE t1.c1 = t2.c1; |
2264 | -WARNING: make rows estimation 1 since below 1 : Rows(t1 t2 *0) | |
2264 | +WARNING: Force estimate to be at least one row, to avoid possible divide-by-zero when interpolating costs : Rows(t1 t2 *0) | |
2265 | 2265 | LOG: pg_hint_plan: |
2266 | 2266 | used hint: |
2267 | 2267 | Rows(t1 t2 *0) |