1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

merge 5.5 -> 10.0-base

This commit is contained in:
unknown
2013-08-20 14:48:29 +03:00
60 changed files with 730 additions and 246 deletions

View File

@ -18,7 +18,7 @@ n
4
drop table t1;
create table t1(n int);
insert into t1 values (1);
insert into t1 values (1),(2);
select get_lock("mysqltest_lock", 100);
get_lock("mysqltest_lock", 100)
1
@ -27,11 +27,13 @@ update low_priority t1 set n = 4;
select n from t1;
n
1
2
select release_lock("mysqltest_lock");
release_lock("mysqltest_lock")
1
n
1
2
select release_lock("mysqltest_lock");
release_lock("mysqltest_lock")
1