mirror of
https://github.com/MariaDB/server.git
synced 2025-11-10 23:02:54 +03:00
- Error 1296 is no longer returned on first select after DROP/CREATE.
mysql-test/r/ndb_alter_table2.result:
Error 1296 is no longer returned on first select after DROP/CREATE, handled proactive in ndb_handle_schema_change.
mysql-test/t/ndb_alter_table2.test:
Error 1296 is no longer returned on first select after DROP/CREATE, handled proactive in ndb_handle_schema_change.
sql/ha_ndbcluster.cc:
Add sourrounding {'s
43 lines
691 B
Plaintext
43 lines
691 B
Plaintext
DROP TABLE IF EXISTS t1;
|
|
CREATE TABLE t1 (
|
|
a INT NOT NULL PRIMARY KEY,
|
|
b INT NOT NULL
|
|
) ENGINE=ndbcluster;
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES (9410,9412);
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES (9411,9412);
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES (9412,9412);
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES (9413,9412);
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES (9414,9412);
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES (9415,9412);
|
|
ROLLBACK;
|
|
ROLLBACK;
|
|
ROLLBACK;
|
|
ROLLBACK;
|
|
ROLLBACK;
|
|
ROLLBACK;
|
|
drop table t1;
|
|
CREATE TABLE t1 (
|
|
a INT NOT NULL PRIMARY KEY,
|
|
b INT NOT NULL,
|
|
c INT NOT NULL
|
|
) ENGINE=ndbcluster;
|
|
select * from t1;
|
|
a b c
|
|
select * from t1;
|
|
a b c
|
|
select * from t1;
|
|
a b c
|
|
select * from t1;
|
|
a b c
|
|
select * from t1;
|
|
a b c
|
|
select * from t1;
|
|
a b c
|
|
drop table t1;
|