1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Cleanup after last merge

This commit is contained in:
monty@hundin.mysql.fi
2001-10-08 07:24:04 +03:00
parent 938a8dc2ef
commit 2f603156ed
44 changed files with 163 additions and 140 deletions

View File

@@ -1,4 +1,18 @@
create table t1(n int);
insert into t1 values (1);
lock tables t1 write;
update low_priority t1 set n = 4;
select n from t1;
unlock tables;
n
4
drop table t1;
create table t1(n int);
insert into t1 values (1);
lock tables t1 read;
update low_priority t1 set n = 4;
select n from t1;
unlock tables;
n
1
drop table t1;