fix trivial failures in 'inherit' tests ('Sort Key' in EXPLAIN VERBOSE)
authorTomas Vondra <[email protected]>
Sun, 22 Jan 2017 23:51:29 +0000 (00:51 +0100)
committerTomas Vondra <[email protected]>
Sun, 22 Jan 2017 23:51:29 +0000 (00:51 +0100)
src/test/regress/expected/inherit.out

index 0d4407fc5c4c09b94c4d9db718356cfbcfc9a0e5..9b6a131a6577fa130070e81aa9e76c970822eb88 100644 (file)
@@ -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