From: Tomas Vondra Date: Fri, 14 Jul 2017 22:47:35 +0000 (+0200) Subject: Accept trivial plan change in xc_for_update test X-Git-Tag: XL_10_R1BETA1~220 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=98332ede39b8813c2e80e0aa178a0763deee0075;p=postgres-xl.git Accept trivial plan change in xc_for_update test The join is detected to be unique, which is indicated by 'Inner Unique' key in the explain plan. --- diff --git a/src/test/regress/expected/xc_for_update.out b/src/test/regress/expected/xc_for_update.out index e74d015b02..396b807387 100644 --- a/src/test/regress/expected/xc_for_update.out +++ b/src/test/regress/expected/xc_for_update.out @@ -299,6 +299,7 @@ explain (costs off, num_nodes off, nodes off, verbose on) select * from t1 wher Output: t1.val, t1.val2 -> Hash Join Output: t1.val, t1.val2 + Inner Unique: true Hash Cond: (t1.val = "ANY_subquery".val) -> Seq Scan on public.t1 Output: t1.val, t1.val2 @@ -313,7 +314,7 @@ explain (costs off, num_nodes off, nodes off, verbose on) select * from t1 wher Output: t2.val, t2.ctid -> Seq Scan on public.t2 Output: t2.val, t2.ctid -(18 rows) +(19 rows) -- test multiple row marks explain (costs off, num_nodes off, nodes off, verbose on) select * from t1, t2 for share of t2 for update of t1;