Accept regression diffs in select_implicit test case
authorPavan Deolasee <[email protected]>
Fri, 25 Aug 2017 12:18:25 +0000 (17:48 +0530)
committerPavan Deolasee <[email protected]>
Fri, 25 Aug 2017 12:18:25 +0000 (17:48 +0530)
It was a simple case of change in row ordering because the test case is
requesting order by column 'a', but the expected output had order by column 'c'

src/test/regress/expected/select_implicit.out

index 2a8a63601ee7f0a7133f07e533298838de28ea1b..acba793fc7ef0bddf3015baa4ce59453a67f84a0 100644 (file)
@@ -69,19 +69,19 @@ SELECT test_missing_target.b, count(*)
 (4 rows)
 
 --   w/o existing GROUP BY target
-SELECT c FROM test_missing_target ORDER BY c;
+SELECT c FROM test_missing_target ORDER BY a;
     c     
 ----------
+ XXXX    
  ABAB    
  ABAB    
  BBBB    
  BBBB    
- CCCC    
- CCCC    
- XXXX    
  bbbb    
  cccc    
  cccc    
+ CCCC    
+ CCCC    
 (10 rows)
 
 --   w/o existing ORDER BY target