Thanks for the test case.

I've bisected this down to commit
5069 "In version 1.3.172, a performance regression was introduced..."

Don't have time to debug further right now, maybe Thomas will pick this
up, otherwise I'll look at it some more next week.

On 2013-10-24 06:30, JND wrote:
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