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:
@ -52,13 +52,13 @@ SELECT SHA2('abcdefg', 0) FROM t1 LIMIT 1;
|
||||
SHA2('abcdefg', 0)
|
||||
7d1a54127b222502f5b79b5fb0803061152a44f92b37e23c6527baf665d4da9a
|
||||
SELECT t1_INT, SHA2(t1_INT, 0) FROM t1 ORDER BY 1;
|
||||
ERROR 42000: The storage engine for the table doesn't support IDB-1001: Function 'sha2' isn't supported.
|
||||
ERROR 42000: The storage engine for the table doesn't support MCS-1001: Function 'sha2' isn't supported.
|
||||
SELECT t1_DECIMAL, SHA2(t1_DECIMAL, 0) FROM t1 ORDER BY 1;
|
||||
ERROR 42000: The storage engine for the table doesn't support IDB-1001: Function 'sha2' isn't supported.
|
||||
ERROR 42000: The storage engine for the table doesn't support MCS-1001: Function 'sha2' isn't supported.
|
||||
SELECT t1_TEXT, SHA2(t1_TEXT, 0) FROM t1 ORDER BY 1;
|
||||
ERROR 42000: The storage engine for the table doesn't support IDB-1001: Function 'sha2' isn't supported.
|
||||
ERROR 42000: The storage engine for the table doesn't support MCS-1001: Function 'sha2' isn't supported.
|
||||
SELECT t1_DATE, SHA2(t1_DATE, 0) FROM t1 ORDER BY 1;
|
||||
ERROR 42000: The storage engine for the table doesn't support IDB-1001: Function 'sha2' isn't supported.
|
||||
ERROR 42000: The storage engine for the table doesn't support MCS-1001: Function 'sha2' isn't supported.
|
||||
SELECT t1_TIME, SHA2(t1_TIME, 0) FROM t1 ORDER BY 1;
|
||||
ERROR 42000: The storage engine for the table doesn't support IDB-1001: Function 'sha2' isn't supported.
|
||||
ERROR 42000: The storage engine for the table doesn't support MCS-1001: Function 'sha2' isn't supported.
|
||||
DROP DATABASE mcs267_db;
|
||||
|
Reference in New Issue
Block a user