diff options
author | unknown <mskold@mysql.com> | 2004-07-21 12:06:46 +0200 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2004-07-21 12:06:46 +0200 |
commit | d8a914d431afa760780aa93386c806107d814314 (patch) | |
tree | ce2eef2d3d78b702769c559818a625ec7bb46712 /mysql-test/r/ndb_lock.result | |
parent | 2d74872cf8c9dd11244f7d1b9248be51d91dc147 (diff) | |
download | mariadb-git-d8a914d431afa760780aa93386c806107d814314.tar.gz |
ndb_lock.test, ndb_lock.result:
new file
Diffstat (limited to 'mysql-test/r/ndb_lock.result')
-rw-r--r-- | mysql-test/r/ndb_lock.result | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/mysql-test/r/ndb_lock.result b/mysql-test/r/ndb_lock.result new file mode 100644 index 00000000000..94ff5c25e6b --- /dev/null +++ b/mysql-test/r/ndb_lock.result @@ -0,0 +1,25 @@ +DROP TABLE IF EXISTS t1,t2,t3,t4,t5,t6,t7; +create table t1 (x integer not null primary key, y varchar(32)) engine = ndb; +insert into t1 values (1,'one'), (2,'two'); +select * from t1; +x y +2 two +1 one +select * from t1; +x y +2 two +1 one +start transaction; +insert into t1 values (3,'three'); +start transaction; +select * from t1; +x y +2 two +1 one +commit; +select * from t1; +x y +2 two +3 three +1 one +commit; |