mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
ndb - bug#33619
make sure to alloc logspace and set bits if doing delete after previous update wo/ touching DD part mysql-test/suite/ndb/r/ndb_dd_basic.result: testcase mysql-test/suite/ndb/t/ndb_dd_basic.test: testcase
This commit is contained in:
@ -346,6 +346,16 @@ UPDATE t1 SET c = '6' WHERE b = '7';
|
||||
SELECT * FROM t1 ORDER BY 1;
|
||||
UPDATE t1 SET c = '7' WHERE c = '6';
|
||||
SELECT * FROM t1 ORDER BY 1;
|
||||
|
||||
DELETE FROM t1;
|
||||
INSERT INTO t1 VALUES (3,'1','1');
|
||||
BEGIN;
|
||||
UPDATE t1 SET b = b + 2 WHERE A = 3;
|
||||
DELETE FROM t1 WHERE A = 3;
|
||||
INSERT INTO t1 VALUES (3,'0','0');
|
||||
COMMIT;
|
||||
SELECT * from t1 ORDER BY 1;
|
||||
|
||||
DROP TABLE t1;
|
||||
|
||||
########################
|
||||
|
Reference in New Issue
Block a user