rllmodule2.sql
来自「derby database source code.good for you.」· SQL 代码 · 共 20 行
SQL
20 行
-- Test whether the RllRAMAccessmanager is working right. The property file-- for this test sets the lock level to table so make sure we get a table lock.-- level locking). run resource 'LockTableQuery.subsql';autocommit off;create table heap_only (a int);commit;---------------------------------------------------------------------------------- Test insert into empty heap, should just get table lock --------------------------------------------------------------------------------insert into heap_only values (1);select * from lock_table order by tabname, type desc, mode, cnt, lockname;commit;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?