You've already forked mariadb-columnstore-engine
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:
@ -37,13 +37,13 @@ SELECT UNCOMPRESS(COMPRESS('!@')) FROM t1 LIMIT 1;
|
||||
UNCOMPRESS(COMPRESS('!@'))
|
||||
!@
|
||||
SELECT t1_INT, UNCOMPRESS(COMPRESS(t1_INT)) FROM t1 ORDER BY 1;
|
||||
ERROR 42000: The storage engine for the table doesn't support IDB-1001: Function 'uncompress' isn't supported.
|
||||
ERROR 42000: The storage engine for the table doesn't support MCS-1001: Function 'uncompress' isn't supported.
|
||||
SELECT t1_DECIMAL, UNCOMPRESS(COMPRESS(t1_DECIMAL)) FROM t1 ORDER BY 1;
|
||||
ERROR 42000: The storage engine for the table doesn't support IDB-1001: Function 'uncompress' isn't supported.
|
||||
ERROR 42000: The storage engine for the table doesn't support MCS-1001: Function 'uncompress' isn't supported.
|
||||
SELECT t1_TEXT, UNCOMPRESS(COMPRESS(t1_TEXT)) FROM t1 ORDER BY 1;
|
||||
ERROR 42000: The storage engine for the table doesn't support IDB-1001: Function 'uncompress' isn't supported.
|
||||
ERROR 42000: The storage engine for the table doesn't support MCS-1001: Function 'uncompress' isn't supported.
|
||||
SELECT t1_DATE, UNCOMPRESS(COMPRESS(t1_DATE)) FROM t1 ORDER BY 1;
|
||||
ERROR 42000: The storage engine for the table doesn't support IDB-1001: Function 'uncompress' isn't supported.
|
||||
ERROR 42000: The storage engine for the table doesn't support MCS-1001: Function 'uncompress' isn't supported.
|
||||
SELECT t1_TIME, UNCOMPRESS(COMPRESS(t1_TIME)) FROM t1 ORDER BY 1;
|
||||
ERROR 42000: The storage engine for the table doesn't support IDB-1001: Function 'uncompress' isn't supported.
|
||||
ERROR 42000: The storage engine for the table doesn't support MCS-1001: Function 'uncompress' isn't supported.
|
||||
DROP DATABASE mcs269_db;
|
||||
|
Reference in New Issue
Block a user