1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

ci: new builds grid, parallel steps

This commit is contained in:
mariadb-RomanNavrotskiy
2022-05-11 12:24:52 +02:00
parent dc82c080f6
commit 194f0e9d64
8 changed files with 179 additions and 120 deletions

View File

@ -62,11 +62,11 @@ test_mcol641_create cs4 d3 decimal 8 2 NULL 18 18
CREATE TABLE cs5(d1 DECIMAL(39)) ENGINE=columnstore;
ERROR HY000: Internal error: CAL0009: (3)Create table failed due to Syntax error: The maximum precision (total number of digits) that can be specified is 38
CREATE TABLE cs5(d1 DECIMAL(38,39)) ENGINE=columnstore;
ERROR 42000: Too big scale 39 specified for 'd1'. Maximum is 38
Got one of the listed errors
ALTER TABLE cs1 ADD COLUMN d10 DECIMAL(40);
ERROR HY000: Internal error: CAL0001: Alter table Failed: AlterTableProcessor::addColumn Syntax error: The maximum precision (total number of digits) that can be specified is 38
ALTER TABLE cs1 ADD COLUMN d11 DECIMAL(38,40);
ERROR 42000: Too big scale 40 specified for 'd11'. Maximum is 38
Got one of the listed errors
DROP TABLE cs1;
DROP TABLE cs2;
DROP TABLE cs3;

View File

@ -33,7 +33,7 @@ NULL NULL NULL NULL NULL
SELECT CAST(t1_int AS DECIMAL(4,5)) FROM t1;
ERROR 42000: For float(M,D), double(M,D) or decimal(M,D), M must be >= D (column '')
SELECT CAST(t1_int AS DECIMAL(66,6)) FROM t1;
ERROR 42000: Too big precision 66 specified for 't1_int'. Maximum is 65
Got one of the listed errors
SELECT CAST(t1_int AS DECIMAL(64,63)) FROM t1;
ERROR 42000: Too big scale 63 specified for 't1_int'. Maximum is 38
Got one of the listed errors
DROP DATABASE mcs69_db;