mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
ndb - mysql-test-run testcase for bug#27757
mysql-test/r/ndb_dd_basic.result: testcase mysql-test/t/ndb_dd_basic.test: testcase
This commit is contained in:
@ -440,6 +440,13 @@ insert into t1 values(7,'x');
|
|||||||
insert into t1 values(8,'x');
|
insert into t1 values(8,'x');
|
||||||
delete from t1 where a = 0;
|
delete from t1 where a = 0;
|
||||||
commit;
|
commit;
|
||||||
|
delete from t1;
|
||||||
|
begin;
|
||||||
|
insert into t1 values (1, 'x');
|
||||||
|
select * from t1;
|
||||||
|
a b
|
||||||
|
1 x
|
||||||
|
rollback;
|
||||||
set autocommit = 1;
|
set autocommit = 1;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
create table test.t1 (f1 varchar(50) primary key, f2 text,f3 int)
|
create table test.t1 (f1 varchar(50) primary key, f2 text,f3 int)
|
||||||
|
@ -367,8 +367,16 @@ insert into t1 values(7,'x');
|
|||||||
insert into t1 values(8,'x');
|
insert into t1 values(8,'x');
|
||||||
delete from t1 where a = 0;
|
delete from t1 where a = 0;
|
||||||
commit;
|
commit;
|
||||||
|
|
||||||
|
delete from t1;
|
||||||
|
begin;
|
||||||
|
insert into t1 values (1, 'x');
|
||||||
|
select * from t1;
|
||||||
|
rollback;
|
||||||
|
|
||||||
set autocommit = 1;
|
set autocommit = 1;
|
||||||
|
|
||||||
|
|
||||||
drop table t1;
|
drop table t1;
|
||||||
#############################
|
#############################
|
||||||
# Customer posted order by test case
|
# Customer posted order by test case
|
||||||
|
Reference in New Issue
Block a user