You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
fix(writeengine) MCOL-4202: use schema name when renaming table and change it's fields in syscat
This commit is contained in:
committed by
Leonid Fedorov
parent
74c1a38f2c
commit
fadb102712
@ -37,12 +37,10 @@ ALTER TABLE t2 RENAME TO mcs12_db1.t1;
|
||||
--replace_regex /( COLLATE=latin1_swedish_ci)//
|
||||
SHOW CREATE TABLE t1;
|
||||
SELECT * FROM t1;
|
||||
# Cross db rename errors in CS but not in innodb. Need to check.
|
||||
--error 1815
|
||||
ALTER TABLE mcs12_db1.t1 RENAME TO mcs12_db2.t1;
|
||||
|
||||
# Add column
|
||||
DROP TABLE t1;
|
||||
DROP TABLE mcs12_db2.t1;
|
||||
CREATE TABLE t1 (i INTEGER) ENGINE=Columnstore;
|
||||
ALTER TABLE t1 ADD COLUMN (c CHAR(10));
|
||||
INSERT INTO t1 VALUES (1, 'a'),(2, 'b');
|
||||
|
Reference in New Issue
Block a user