mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge orca.ndb.mysql.com:/export/home/space/pekka/ndb/version/my51-ndb
into orca.ndb.mysql.com:/export/home/space/pekka/ndb/version/my51-bug20612
This commit is contained in:
@ -345,6 +345,31 @@ DELETE FROM t1 WHERE a=2;
|
||||
SELECT COUNT(*) FROM t1;
|
||||
DROP TABLE t1;
|
||||
|
||||
# bug#20612 INS-DEL bug (not pgman bug)
|
||||
# found via disk data assert but is not pgman or disk data related
|
||||
|
||||
CREATE TABLE t1 (
|
||||
a int NOT NULL,
|
||||
b varchar(4000), -- must use 2 pages undo
|
||||
PRIMARY KEY using hash (a)
|
||||
)
|
||||
TABLESPACE ts1 STORAGE DISK ENGINE=NDBCLUSTER;
|
||||
|
||||
set autocommit = 0;
|
||||
insert into t1 values(0,'x');
|
||||
insert into t1 values(1,'x');
|
||||
insert into t1 values(2,'x');
|
||||
insert into t1 values(3,'x');
|
||||
insert into t1 values(4,'x');
|
||||
insert into t1 values(5,'x');
|
||||
insert into t1 values(6,'x');
|
||||
insert into t1 values(7,'x');
|
||||
insert into t1 values(8,'x');
|
||||
delete from t1 where a = 0;
|
||||
commit;
|
||||
set autocommit = 1;
|
||||
|
||||
drop table t1;
|
||||
#############################
|
||||
# Customer posted order by test case
|
||||
# Org in ndb_dd_advance.test
|
||||
|
Reference in New Issue
Block a user