Issue Details (XML | Word | Printable)

Key: DERBY-3603
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Major Major
Assignee: Bryan Pendleton
Reporter: David Butterworth
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
Derby

'IN' clause ignores valid results, incorrect qualifier handling suspected

Created: 08/Apr/08 02:14 AM   Updated: 30/Jun/09 03:55 PM
Return to search
Component/s: SQL
Affects Version/s: 10.3.2.1, 10.4.1.3
Fix Version/s: 10.3.3.0, 10.4.1.3

Time Tracking:
Not Specified

File Attachments:
  Size
Text File Licensed for inclusion in ASF works d3603_v1.patch 2008-04-11 05:16 PM A B 5 kB
File Licensed for inclusion in ASF works d3603_with_test.diff 2008-04-14 03:08 AM Bryan Pendleton 8 kB
Java Archive File derbydb.jar 2008-04-09 03:45 PM Kathey Marsden 425 kB
File derbydb.tar.bz2 2008-04-08 02:17 AM David Butterworth 232 kB
File Licensed for inclusion in ASF works subqueryFlattening.diff 2008-04-14 03:08 AM Bryan Pendleton 2 kB
File Licensed for inclusion in ASF works updateSubqueryMaster.diff 2008-04-16 01:23 AM Bryan Pendleton 12 kB

Urgency: Urgent
Bug behavior facts: Regression
Resolution Date: 16/Apr/08 04:05 PM


 Description  « Hide
Derbys' 'IN' clause is returning different results depending on which side of a joined table
I am doing my 'IN' comparison against. This only occurs when the number of items within the 'IN' clause is greater then 1.

This behaviour was also confirmed by Bryan Pendleton in this thread:
http://mail-archives.apache.org/mod_mbox/db-derby-user/200804.mbox/%3c47FA5974.2060705@amberpoint.com%3e

Using the test database attatched the following 2 queries produce the issue:

ij> select count(*) FROM spike.accounts account, spike.admin_units admin_unit,
    spike.bookings booking
    WHERE booking.child_id = 2 AND
    admin_unit.admin_unit_id IN (1,21) AND
    booking.booking_date_time_out >= 20080331000000 AND
    booking.booking_date_time_in <= 20080406235900 AND
    account.account_id = booking.account_id AND
    admin_unit.admin_unit_id = account.admin_unit_id;
1
-----------
2

1 row selected
ij> select count(*) FROM spike.accounts account, spike.admin_units admin_unit,
    spike.bookings booking
    WHERE booking.child_id = 2 AND
    account.admin_unit_id IN (1,21) AND
    booking.booking_date_time_out >= 20080331000000 AND
    booking.booking_date_time_in <= 20080406235900 AND
    account.account_id = booking.account_id AND
    admin_unit.admin_unit_id = account.admin_unit_id;
1
-----------
3

1 row selected
ij>

The only difference between the 2 statements is which side of a join the 'IN' clause is matched against.

Bryan performed some initial testing and stated the following:

--------------------- SNIP ------------------------

Interestingly, although the actual results do NOT contain any values
for admin_unit_id = 21, if I change the query to:

    admin_unit.admin_unit_id IN (1)
or
    account.admin_unit_id IN (1)

then the problem disappears -- I get 3 rows for both queries.

I also ran query plans for both the queries (in the IN (1,21) case)
and have pasted the (simplified) query plans at the end of this message.

I notice that in the case where the query gives 2 rows, which is
when we specify admin_unit.admin_unit_id in (1,21), the admin_unit_id
index scan output in the query plan contains:

           qualifiers:
Column[0][0] Id: 0
Operator: =
Ordered nulls: false
Unknown return value: false
Negate comparison result: false

However, in the case where the query gives 3 rows, which is
when we specify account.admin_unit_id in (1,21), the admin_unit_id
index scan output in the query plan contains:

           qualifiers:
None

I think it is the presence/absence of this qualifier on the query
scan which is causing the different results in the query, as in
the first case we see:

           Number of rows qualified=2
           Number of rows visited=3

but in the second case we see:

           Number of rows qualified=3
           Number of rows visited=3

I definitely don't have any explanation for why you are getting
this odd behavior; it certainly seems like a bug to me.

-------------END SNIP -----------------------


 All   Comments   Work Log   Change History   Subversion Commits      Sort Order: Ascending order - Click to sort in descending order
David Butterworth made changes - 08/Apr/08 02:17 AM
Field Original Value New Value
Attachment derbydb.tar.bz2 [ 12379620 ]
Kathey Marsden made changes - 08/Apr/08 04:00 PM
Derby Info [Regression, Existing Application Impact] [Regression]
Kathey Marsden made changes - 09/Apr/08 03:45 PM
Attachment derbydb.jar [ 12379740 ]
A B made changes - 11/Apr/08 05:16 PM
Attachment d3603_v1.patch [ 12379935 ]
Bryan Pendleton made changes - 13/Apr/08 04:45 PM
Assignee Bryan Pendleton [ bryanpendleton ]
Bryan Pendleton made changes - 14/Apr/08 03:08 AM
Attachment d3603_with_test.diff [ 12380036 ]
Attachment subqueryFlattening.diff [ 12380037 ]
Bryan Pendleton made changes - 16/Apr/08 01:23 AM
Attachment updateSubqueryMaster.diff [ 12380236 ]
Dyre Tjeldvoll made changes - 16/Apr/08 04:04 PM
Fix Version/s 10.4.0.0 [ 12312540 ]
Dyre Tjeldvoll made changes - 16/Apr/08 04:05 PM
Resolution Fixed [ 1 ]
Status Open [ 1 ] Resolved [ 5 ]
Bryan Pendleton made changes - 17/Apr/08 06:46 PM
Fix Version/s 10.3.2.2 [ 12312885 ]
Knut Anders Hatlen made changes - 18/Apr/08 01:56 PM
Fix Version/s 10.4.0.0 [ 12312540 ]
Fix Version/s 10.4.1.3 [ 12313111 ]
Dag H. Wanvik made changes - 30/Jun/09 03:55 PM
Bug behavior facts [Regression]