February 25, 2016 – Alert: Incorrect SQL Results
InterSystems has corrected a defect that can cause incorrect results for certain SQL INSERT, UPDATE, and DELETE statements.
This defect is present only in Caché and Ensemble 2015.2 and HealthShare distributions based on them. The problem affects all platforms.
Incorrect results occur only when two or more of these statements are nested within each other.
The example below demonstrates one possible way for this problem to happen:
-
The class has an UPDATE trigger that uses embedded SQL to modify a table.
-
Because the SQL is embedded in the UPDATE trigger, it is a nested statement – the trigger’s UPDATE is called while the UPDATE that initiated the trigger is still being executed. (This is the condition that can lead to incorrect results.)
-
In this case, the trigger is updating this table but the problem could happen even if a different table were being changed.
Given the following class, User.Test:
Class User.Test Extends %Persistent
{
Index idx On (x, y);
Property x As %Integer;
Property y As %Integer;
Property z As %Integer;
Property flg As %Integer;
Property zz As %String;
Trigger UA [ Event = UPDATE, Time = AFTER ]
{
if ({flg}=0) quit
&sql( UPDATE SQLUser.Test
SET flg=0
WHERE x=:{x} and y=:{y} and z=:{z}
)
quit
}
}
and that User.Test has the following two rows:
x y z flg zz
123 55 1 0
123 55 2 0
In this situation, the following call to UPDATE only modifies one row:
UPDATE SQLUser.Test SET flg=1,zz='done' WHERE x=123 and y=55
This call then has a result of:
x y z flg zz
123 55 1 1 done
123 55 2 0
The correction for this defect is identified as DPV4766. It will be included in all future releases of Caché, Ensemble, and HealthShare. The correction is also available via Ad Hoc distribution from InterSystems Worldwide Response Center (WRC). If you have any questions regarding this alert, please contact the Worldwide Response Center.
Subscribe to support alerts via RSS:
http://www.intersystems.com/feed/?post_type=support-alert
To see previous support alerts and sign up for email delivery of these alerts, please visit:
http://www.intersystems.com/services-support/product-support/product-news-alerts/
Although the Alert uses a trigger as an example, the exposure is not limited to triggers. This is just a simple example to explain it. Some staff, and I expect some clients too, may read the alert and assume that only triggers are exposed. Unfortunately, this is only one case of nested statements.
March 3, 2016 – Alert: Incorrect SQL Results – Update
After further study of this problem, InterSystems has decided to replace all 2015.2.* full kits on the WRC distribution page. We have removed the current kits and will post new 2015.2.* kits as soon as they are available. We will also post an alert announcing that the new kits are available.
If you are using Cache 2015.2.*, Ensemble 2015.2.*, or a HealthShare kit based on 2015.2.*, InterSystems recommends that you get a full-kit Ad Hoc that contains the correction. Once you have upgraded to a new kit containing the correction, you must compile all the classes and routines in your application.
If you have any questions regarding this alert, please contact the Worldwide Response Center.
Here is a little more detail on the scope of this alert. This problem can happen when a non-cursor based query is nested in a second one and both make use of a temp index (temp-file in Show Plan text).
Non-cursor based queries are:
SELECT - that return only 1 row. These would only happen in Embedded SQL ie &SQL(SELECT….)
All INSERTs - can happen in Dynamic, xDBC or Embedded
All UPDATEs - can happen in Dynamic, xDBC or Embedded
All DELETEs - can happen in Dynamic, xDBC or Embedded
Some examples of queries in the Samples Namespace that would generate problem code are:
&SQL(SELECT name, Age, $$Sample.Person_ UpdateProcTest FROM SQLUser.testidkey2 WHERE (:K1 is not null and Age = :K1) OR (:K1 IS NULL AND Age IS NULL))
INSERT INTO Sample.Person (Name, SSN) SELECT Name, SSN FROM Sample.Person WHERE (:K1 is not null and Age = :K1) OR (:K1 IS NULL AND Age IS NULL)
UPDATE Sample.Person SET Name = 'Bannon,Brendan' WHERE SSN = ?
DELETE FROM Sample.person WHERE name Like ? and Age > ?
If you look at Show Plans for these queries the thing that they all have in common and is the text that says the query can lead to the problem is building a temp-file. This temp-file can have a couple of different formats so the text can vary some. Two examples are:
Add ID bit to bitmap temp-file A.
and
Add a row to temp-file A, subscripted by a counter
For the problem to happen you would need to have 2 queries that both make use of a temp-file and one is nested inside the other. Some examples of nesting would be:
Cache and Ensemble 2015.2.2 Build 811 is now available on the distribution page of the WRC.
We are currently testing HealthShare and expect it to be available soon