This is an error as running against master (NOT 0.10.0-rc2) this is related to #4085 which is not part of 0.10.0-rc2 IIRC
These two queries return the same results:
Query asc:
SELECT * FROM (
SELECT "channel"
FROM "wikiticker-v2"
GROUP BY "channel"
ORDER BY "channel" asc
) LIMIT 5
Query desc
SELECT * FROM (
SELECT "channel"
FROM "wikiticker-v2"
GROUP BY "channel"
ORDER BY "channel" desc
) LIMIT 5
It always does ascending (desc is ignored)
This is an error as running against master (NOT 0.10.0-rc2) this is related to #4085 which is not part of 0.10.0-rc2 IIRC
These two queries return the same results:
Query asc:
Query desc
It always does ascending (desc is ignored)