How difficult would it be to add NATURAL (LEFT|RIGHT) JOIN support?

By looking at the class Parser.java it looks like it can be done at the 
level of Parser by essentially "cut and paste" some code from two if 
branches

   if (readIf("RIGHT")) {
   else if (readIf("LEFT"))

to

   else if (readIf("NATURAL")) {

 
in Parser.readJoin method.

Is it a correct assessment or do I overlook something? I realize that 
NATURAL FULL JOIN is out of the question, because FULL join is not 
supported by H2.

Regards,
Pavel.

-- 
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 h2-database+unsubscr...@googlegroups.com.
To post to this group, send email to h2-database@googlegroups.com.
Visit this group at https://groups.google.com/group/h2-database.
For more options, visit https://groups.google.com/d/optout.

Reply via email to