Uploaded image for project: 'Derby'
  1. Derby
  2. DERBY-1852

Wrong results: duplicate rows returned for nested UNIONs when they should be eliminated.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 10.0.2.0, 10.0.2.1, 10.1.1.0, 10.1.2.1, 10.1.3.1
    • 10.3.1.4
    • SQL
    • None
    • Normal
    • Release Note Needed

    Description

      Regarding UNIONs, the Derby documentation says that if the "ALL" keyword is not specified, the default behavior is to remove duplicate rows from the result. And for simple cases of UNIONs, that is indeed the case. However, there are certain queries with nested UNIONs where Derby is supposed to remove duplicates from the result set, but does not.

      This is NOT a regression. I have been able to reproduce the behavior in early versions of 10.1.2 and also back to 10.0.2.2, which is the oldest client I have.

      To show the problem:

      create table t1 (i int, j int);
      create table t2 (i int, j int);
      insert into t1 values (1, 2), (2, 4), (3, 6), (4, 8), (5, 10);
      insert into t2 values (1, 2), (2, -4), (3, 6), (4, -8), (5, 10);
      insert into t2 values (3, 6), (4, 8), (3, -6), (4, -8);

      – Following query correctly returns 13 rows; the first union
      – does not specify "ALL" and should therefore remove
      – duplicates.
      select * from t1 union select * from t2 union all select * from t1;

      – But if we do a join with the same query, we end up with
      – 19 rows instead of 13. This is because the duplicate entries
      – are not correctly removed.
      select * from t1 left outer join
      (select * from t1 union select * from t2 union all select * from t1) x2
      on t1.i = x2.i;

      Just for sanity, I also ran these statements against DB2 and the result was of the last query was indeed 13 rows, not 19. So I think this is a case where Derby is returning incorrect results.

      Attachments

        1. d1852_engine_v1.patch
          9 kB
          A B
        2. d1852_quick_doNOTcommit.diff
          3 kB
          A B
        3. d1852_tests_v1.patch
          67 kB
          A B
        4. d1852_v1.stat
          0.4 kB
          A B
        5. releaseNote.html
          5 kB
          Myrna van Lunteren
        6. releaseNote.html
          6 kB
          A B
        7. releaseNote.html
          6 kB
          A B
        8. releaseNote.html
          3 kB
          Myrna van Lunteren

        Issue Links

          Activity

            People

              army A B
              army A B
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: