opps, my fault as I was using right join instead of left you. Please ignore
this and sorry for wasting your time...

2017-07-29 18:31 GMT+02:00 Pablo Beltran <[email protected]>:

> Hi,
>
> is it possible disable index optimization? I would like  to perform SQL
> queries just like they were written without any change.
>
>
> select *
> from A right join B on B.column1=A.column1
> where A.column2 = someconditonX and B.column2 = someconditionY
>
> I would like to searching on A with  the
>     A.column2 = someconditonX
> then on table B with:
>    B.column1 = A.column1 and B.comlumn2 = someconditonY
>
> but actually the plugin searches for:
> B.column2 = someconditon Y and ignores the (right) join:
> B.column1=A.column1
>
> Thanks,
> Pablo.
>
> PS: if diabling optimization is not possible any help to understand how
> outer join cost is calculated would be very much appreciated.
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "H2 Database" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/h2-database/dEZrHsncg5w/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> [email protected].
> To post to this group, send email to [email protected].
> Visit this group at https://groups.google.com/group/h2-database.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 https://groups.google.com/group/h2-database.
For more options, visit https://groups.google.com/d/optout.

Reply via email to