Hi,

That's strange, it should work. Most of the test cases don't use
parentheses. Could you post a complete example? The one you gave
works:

drop all objects;
create table a(x int);
create table b(whatever int, foo int);
create table c(bar int);
SELECT *
FROM
   A
   LEFT JOIN B ON A.X = B.WHATEVER
   JOIN C ON B.FOO = C.BAR
WHERE 1=0;


Regards,
Thomas

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/h2-database?hl=en.

Reply via email to