Uploaded image for project: 'Derby'
  1. Derby
  2. DERBY-649 Useful indexes not used in UNION ALL
  3. DERBY-772

Handle pushing IN predicates into UNIONs. This would allow use of index if present improving performance.

    XMLWordPrintableJSON

Details

    • Sub-task
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 10.0.2.0, 10.1.2.1, 10.2.1.6
    • 10.1.3.1, 10.2.1.6
    • SQL
    • None
    • generic

    Description

      While fix for DERBY-649 allows pushing binary predicates into SELECT statements that are underneath a UNOIN, it would also be good to allow IN operations to be pushed. Derby can rewrite IN operations in a way to allow use of index, if present.

      Derby currently rewrites: REF IN (1, 2, 3) to REF >=1 and REF <=3 and hence would allow use of index on REF, if present. Pushing this predicate into Union would allow use of index on REF for queries like:

      Select * from
      (SELECT REF, NAME from T1 UNION ALL SELECT REF, NAME from t2)
      where REF IN (1,2,3)

      Attachments

        1. DERBY-772.patch
          22 kB
          Satheesh E. Bandaram

        Activity

          People

            Unassigned Unassigned
            bandaram Satheesh E. Bandaram
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: