diff options
author | Andrew Dunstan | 2006-07-27 19:58:39 +0000 |
---|---|---|
committer | Andrew Dunstan | 2006-07-27 19:58:39 +0000 |
commit | 9f99edfd7e1e438147e9014bcfa9e0ec7fb4725d (patch) | |
tree | e9ad1b7f42c06d288c4d435f6726e6b8730e504f | |
parent | 108fe4730152058f9b576969d08898b39bf7fc38 (diff) |
revert last change - broke non-AIX platforms.
-rw-r--r-- | contrib/cube/expected/cube_1.out | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/cube/expected/cube_1.out b/contrib/cube/expected/cube_1.out index 01287417f52..e935fd281b7 100644 --- a/contrib/cube/expected/cube_1.out +++ b/contrib/cube/expected/cube_1.out @@ -1054,21 +1054,21 @@ CREATE INDEX test_cube_ix ON test_cube USING gist (c); SELECT * FROM test_cube WHERE c && '(3000,1000),(0,0)' ORDER BY c; c -------------------------- - (337, 455),(240, 359) (1594, 1043),(1517, 971) + (337, 455),(240, 359) (1444, 403),(1346, 344) - (2424, 160),(2424, 81) (759, 187),(662, 163) + (2424, 160),(2424, 81) (5 rows) -- Test sorting SELECT * FROM test_cube WHERE c && '(3000,1000),(0,0)' GROUP BY c ORDER BY c; c -------------------------- - (337, 455),(240, 359) (1594, 1043),(1517, 971) + (337, 455),(240, 359) (1444, 403),(1346, 344) - (2424, 160),(2424, 81) (759, 187),(662, 163) + (2424, 160),(2424, 81) (5 rows) |