Hi,

It looks like there’s been a regression with subquery ordering on column 
aliases in 1.3.174. The following test passes in 1.3.173 but fails in 
1.3.74:

create table test (a int);
select * from (select a as b from test order by b asc);

It succeeds if Order By is outside ("select * from (select a as b from 
test) order by b") but that diminishes the composability of queries and 
contradicts the documented table select expression syntax.

Regards,
James

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/h2-database.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to