diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-07-27 03:53:54 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-07-27 03:53:54 +0000 |
commit | 2f30d5a34a1ce64d52f3ae9e91624494e6748b89 (patch) | |
tree | 979047608ad4267432027507fc1ead05a6f775a3 /src | |
parent | 9e7e29e6c9dd386a56ab23f419bc358f630cf768 (diff) | |
download | postgresql-2f30d5a34a1ce64d52f3ae9e91624494e6748b89.tar.gz postgresql-2f30d5a34a1ce64d52f3ae9e91624494e6748b89.zip |
My recent optimizer changes caused a different plan to
be picked for one of the complex joins in rules test ... leading to
a different output ordering ...
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/expected/rules.out | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/expected/rules.out b/src/test/regress/expected/rules.out index 1af61b37363..adf7d7b7b6e 100644 --- a/src/test/regress/expected/rules.out +++ b/src/test/regress/expected/rules.out @@ -1022,9 +1022,9 @@ QUERY: SELECT * FROM shoelace_log; sl_name |sl_avail|log_who |log_when ----------+--------+--------+-------- sl7 | 6|Al Bundy|epoch -sl3 | 10|Al Bundy|epoch sl6 | 20|Al Bundy|epoch sl8 | 21|Al Bundy|epoch +sl3 | 10|Al Bundy|epoch (4 rows) QUERY: CREATE VIEW shoelace_obsolete AS |