Changes between Version 1 and Version 2 of Ticket #3503, comment 7


Ignore:
Timestamp:
Mar 23, 2016, 4:41:46 PM (8 years ago)
Author:
robe

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3503, comment 7

    v1 v2  
    66
    77I'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
     9I should add this surprising behavior only happens in case where you order by or group by a value in the SRF
     10
     11
     12{{{
     13SELECT (ST_DumpValues(rast)).*
     14FROM rtable
     15ORDER BY nband;
     16}}}
     17
     18and not
     19
     20{{{
     21SELECT (ST_DumpValues(rast)).*
     22FROM rtable;
     23}}}