From: Tomas Vondra Date: Sat, 18 Mar 2017 22:51:50 +0000 (+0100) Subject: Accept minor plan change in xl_join due to different costing X-Git-Tag: XL_10_R1BETA1~368 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=8348b99ab92424a29c131fde094f0dc880838cae;p=postgres-xl.git Accept minor plan change in xl_join due to different costing The cost of the RemoteSubplan node changed, most likely due to moving the Sort pushdown into pathnode.c (instead of in createplan.c). --- diff --git a/src/test/regress/expected/xl_join.out b/src/test/regress/expected/xl_join.out index 2f226f2dd5..9c1cd3ac10 100644 --- a/src/test/regress/expected/xl_join.out +++ b/src/test/regress/expected/xl_join.out @@ -9,7 +9,7 @@ EXPLAIN SELECT * FROM xl_join_t1 INNER JOIN xl_join_t3 ON xl_join_t1.val1 = xl_join_t3.val1; QUERY PLAN ---------------------------------------------------------------------------------------------------------------------- - Remote Subquery Scan on all (datanode_1,datanode_2) (cost=475.52..5209.87 rows=288579 width=24) + Remote Subquery Scan on all (datanode_1,datanode_2) (cost=575.52..13678.66 rows=288579 width=24) -> Merge Join (cost=475.52..5209.87 rows=288579 width=24) Merge Cond: (xl_join_t3.val1 = xl_join_t1.val1) -> Sort (cost=158.51..164.16 rows=2260 width=8)