1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-3741 dev Change mtr IDB-xxx error codes to MCS-xxxx

This commit is contained in:
David Hall
2021-08-10 11:59:22 -05:00
parent ecde2719b1
commit d1ef83c0f4
39 changed files with 131 additions and 131 deletions

View File

@ -6,7 +6,7 @@ INSERT INTO utest1 VALUES (1,23,36,4888,51232), (2,253,65533,4294967293,18446744
INSERT INTO utest1 VALUES (3,54,3766,27483646,922336854775806);
INSERT INTO utest1 VALUES (4,253,65533,4294967293,1846744073709551613);
INSERT INTO utest1 VALUES (5,255,65535,4294967295,18446744073709551615);
ERROR 22003: CAL0001: IDB-2025: Data truncated for column 'c1', 'c2', 'c3', 'c4'
ERROR 22003: CAL0001: MCS-2025: Data truncated for column 'c1', 'c2', 'c3', 'c4'
INSERT INTO utest1 VALUES (6,1255,165535,14294967295,118446744073709551615);
ERROR 22003: Out of range value for column 'c1' at row 1
SELECT 'q1', utest1.* FROM utest1 ORDER BY 1, 2;