Thread

  1. Re: Any optimizations to the join code in 7.1?

    Thomas Lockhart <lockhart@alumni.caltech.edu> — 2001-04-28T01:49:09Z

    > ... 7.1 out of the box took only 2 seconds! I was amazed
    > and shocked at this damned impressive improvement in planning
    > speed....until I actually used the explicit JOIN syntax described in
    > 11.2. Instanteous results! Instantaneous.....
    
    But it is possible, under many circumstances, for query optimization to
    be a benefit for a many-table query. The docs indicate that explicit
    join syntax bypasses that, even for inner joins, so you may find that
    this syntax is a net loss in performance depending on the query and your
    choice of table order.
    
    Presumably we will be interested in making these two forms of inner join
    equivalent in behavior in a future release. Tom, what are the
    impediments we might encounter in doing this?
    
                          - Thomas