On 2015-03-12 01:50 AM, Mike Goodwin wrote:
So aside from improving the optimizer what would fix my problem would be the 
ability to add hints to fix the join
ordering. I know this is on the road map and I wouldn't mind doing it and do 
not think it should be too hard to
implement (it amounts to adding something to pick up hints in the parser then 
disabling the optimizer). Has any thought
been been put into what the hint syntax for this would look like?

Oracle uses
     SELECT   /*+ORDERED */ ...

Sql Server Uses
       SELECT
       ...
      OPTION(FORCEORDER)

Postrges uses   (this seems less flexible, as it is per query not per select):
     join_collapse_limit (1)
          SELECT ...


I think the SQL Server syntax is better than the Oracle syntax - I don't like 
hiding syntax in comments.

In this case I think we'd be free to make up our own syntax.

--
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/d/optout.

Reply via email to