Skip to content

Commit f61adf8

Browse files
committed
Retrofitting delete performance fix
Adding the delete performance fix from test as a patch on the release.
1 parent ce3b04d commit f61adf8

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
.settings/org.eclipse.wst.jsdt.ui.superType.container
44
.settings/org.eclipse.wst.jsdt.ui.superType.name
55
.DS_Store
6+
*.exe

SQL/SQLServer/uni/CreateAnchorTriggers.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,11 @@ BEGIN
452452
/*~
453453
DELETE [$anchor.mnemonic]
454454
FROM
455-
[$anchor.capsule].[$anchor.name] [$anchor.mnemonic]$(!anchor.hasMoreAttributes())?;
455+
[$anchor.capsule].[$anchor.name] [$anchor.mnemonic]
456+
JOIN
457+
deleted d
458+
ON
459+
d.$anchor.identityColumnName = [$anchor.mnemonic].$anchor.identityColumnName$(!anchor.hasMoreAttributes())?;
456460
~*/
457461
while (attribute = anchor.nextAttribute()) {
458462
/*~

about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h3>ABOUT</h3>
2121
</p>
2222
<h3>VERSION</h3>
2323
<p>
24-
You are currently running version 0.99.6.3-1 <em>release</em> (release: Thursday the 15th, October, 2020).
24+
You are currently running version 0.99.6.3-2 <em>release</em> (release: Friday the 22nd, January, 2021).
2525
</p>
2626
<p>
2727
A change log describing the changes can be found here:

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<!--
4848
"use strict"; // be safe!
4949

50-
var VERSION = '0.99.6.3-1';
50+
var VERSION = '0.99.6.3-2';
5151

5252
// change to false in beta
5353
var RELEASE = true;

0 commit comments

Comments
 (0)