You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
Update mcol641-create.test
This commit is contained in:
committed by
GitHub
parent
1335f8e6a5
commit
ea3af986a2
@ -41,10 +41,10 @@ SELECT TABLE_SCHEMA,TABLE_NAME,COLUMN_NAME,DATA_TYPE,COLUMN_LENGTH,COLUMN_POSITI
|
|||||||
|
|
||||||
--disable_abort_on_error
|
--disable_abort_on_error
|
||||||
CREATE TABLE cs5(d1 DECIMAL(39)) ENGINE=columnstore;
|
CREATE TABLE cs5(d1 DECIMAL(39)) ENGINE=columnstore;
|
||||||
--replace_regex /ERROR 42000: Too big scale specified for 'd1'. Maximum is 38/ERROR 42000: Too big scale 39 specified for 'd1'. Maximum is 38/
|
--replace_regex /Too big scale specified for 'd1'. Maximum is 38/Too big scale 39 specified for 'd1'. Maximum is 38/
|
||||||
CREATE TABLE cs5(d1 DECIMAL(38,39)) ENGINE=columnstore;
|
CREATE TABLE cs5(d1 DECIMAL(38,39)) ENGINE=columnstore;
|
||||||
ALTER TABLE cs1 ADD COLUMN d10 DECIMAL(40);
|
ALTER TABLE cs1 ADD COLUMN d10 DECIMAL(40);
|
||||||
--replace_regex /ERROR 42000: Too big scale specified for 'd11'. Maximum is 38/ERROR 42000: Too big scale 40 specified for 'd11'. Maximum is 38/
|
--replace_regex /Too big scale specified for 'd11'. Maximum is 38/Too big scale 40 specified for 'd11'. Maximum is 38/
|
||||||
ALTER TABLE cs1 ADD COLUMN d11 DECIMAL(38,40);
|
ALTER TABLE cs1 ADD COLUMN d11 DECIMAL(38,40);
|
||||||
--enable_abort_on_error
|
--enable_abort_on_error
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user