From: Tomas Vondra Date: Sun, 22 Jan 2017 23:51:29 +0000 (+0100) Subject: fix trivial failures in 'inherit' tests ('Sort Key' in EXPLAIN VERBOSE) X-Git-Tag: XL_10_R1BETA1~402 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=ba15c6cd292944d92a7f2087770c1e5dcb9184bc;p=postgres-xl.git fix trivial failures in 'inherit' tests ('Sort Key' in EXPLAIN VERBOSE) --- diff --git a/src/test/regress/expected/inherit.out b/src/test/regress/expected/inherit.out index 0d4407fc5c..9b6a131a65 100644 --- a/src/test/regress/expected/inherit.out +++ b/src/test/regress/expected/inherit.out @@ -1460,6 +1460,7 @@ explain (verbose, costs off, nodes off) select * from matest0 order by 1-id; ------------------------------------------------------------------ Remote Subquery Scan on all Output: id, name, (1 - id) + Sort Key: (1 - id) -> Sort Output: matest0.id, matest0.name, ((1 - matest0.id)) Sort Key: ((1 - matest0.id)) @@ -1474,7 +1475,7 @@ explain (verbose, costs off, nodes off) select * from matest0 order by 1-id; Output: matest2.id, matest2.name -> Seq Scan on public.matest3 Output: matest3.id, matest3.name -(16 rows) +(17 rows) select * from matest0 order by 1-id; id | name @@ -1520,6 +1521,7 @@ explain (verbose, costs off, nodes off) select * from matest0 order by 1-id; --------------------------------------------------------------------- Remote Subquery Scan on all Output: id, name, (1 - id) + Sort Key: (1 - id) -> Sort Output: matest0.id, matest0.name, ((1 - matest0.id)) Sort Key: ((1 - matest0.id)) @@ -1534,7 +1536,7 @@ explain (verbose, costs off, nodes off) select * from matest0 order by 1-id; Output: matest2.id, matest2.name -> Index Scan using matest3i on public.matest3 Output: matest3.id, matest3.name -(16 rows) +(17 rows) select * from matest0 order by 1-id; id | name