Changes between Version 1 and Version 2 of Ticket #3503, comment 7
- Timestamp:
- 03/23/16 16:41:46 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified Ticket #3503, comment 7
v1 v2 6 6 7 7 I'll wait till whatever they have decided on is committed and either rewrite the test using the recommended syntax or just turn 9.6 testing back on if they emulate old behavior. 8 9 I should add this surprising behavior only happens in case where you order by or group by a value in the SRF 10 11 12 {{{ 13 SELECT (ST_DumpValues(rast)).* 14 FROM rtable 15 ORDER BY nband; 16 }}} 17 18 and not 19 20 {{{ 21 SELECT (ST_DumpValues(rast)).* 22 FROM rtable; 23 }}}