mirror of
https://github.com/postgres/postgres.git
synced 2025-04-22 23:02:54 +03:00
Add another ORDER BY to rules test; got tired of it 'failing'
every time I tweak the optimizer...
This commit is contained in:
parent
970ef45c41
commit
f851c6b07d
@ -1018,13 +1018,13 @@ sl7 | 6|brown | 60|cm | 60
|
|||||||
sl8 | 21|brown | 40|inch | 101.6
|
sl8 | 21|brown | 40|inch | 101.6
|
||||||
(8 rows)
|
(8 rows)
|
||||||
|
|
||||||
QUERY: SELECT * FROM shoelace_log;
|
QUERY: SELECT * FROM shoelace_log ORDER BY sl_name;
|
||||||
sl_name |sl_avail|log_who |log_when
|
sl_name |sl_avail|log_who |log_when
|
||||||
----------+--------+--------+--------
|
----------+--------+--------+--------
|
||||||
sl7 | 6|Al Bundy|epoch
|
|
||||||
sl6 | 20|Al Bundy|epoch
|
|
||||||
sl8 | 21|Al Bundy|epoch
|
|
||||||
sl3 | 10|Al Bundy|epoch
|
sl3 | 10|Al Bundy|epoch
|
||||||
|
sl6 | 20|Al Bundy|epoch
|
||||||
|
sl7 | 6|Al Bundy|epoch
|
||||||
|
sl8 | 21|Al Bundy|epoch
|
||||||
(4 rows)
|
(4 rows)
|
||||||
|
|
||||||
QUERY: CREATE VIEW shoelace_obsolete AS
|
QUERY: CREATE VIEW shoelace_obsolete AS
|
||||||
|
@ -661,7 +661,7 @@ insert into shoelace_ok select * from shoelace_arrive;
|
|||||||
|
|
||||||
SELECT * FROM shoelace ORDER BY sl_name;
|
SELECT * FROM shoelace ORDER BY sl_name;
|
||||||
|
|
||||||
SELECT * FROM shoelace_log;
|
SELECT * FROM shoelace_log ORDER BY sl_name;
|
||||||
|
|
||||||
CREATE VIEW shoelace_obsolete AS
|
CREATE VIEW shoelace_obsolete AS
|
||||||
SELECT * FROM shoelace WHERE NOT EXISTS
|
SELECT * FROM shoelace WHERE NOT EXISTS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user