⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 joindeadlock.sql1

📁 derby database source code.good for you.
💻 SQL1
字号:
-- user 1 for bug 1573
-- a deadlock when reopening a join gets an assertion
-- violation in close()
create table outer1(c1 int);
create index o1_i1 on outer1(c1);
insert into outer1 values 1, 2;
insert into inner1 values 1, 2;
insert into inner2 values 1, 2;
autocommit off;
-- this user will get lock timeout in subquery on 2nd next
get cursor c1 as 'select * from outer1 where c1 <= (select count(*) from inner1 properties index = i1_i1, inner2 properties index = i2_i1 where outer1.c1 = outer1.c1)';
next c1;
next c1;
values 1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -