1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-09-11 08:50:45 +03:00
Files
mariadb-columnstore-engine/mysql-test/columnstore/basic/r/mcol6107-invalid-arguments.result
mariadb-KristinaPavlova e3af51f3b3 add more cases in mtr test
2025-08-20 09:24:19 +01:00

36 lines
1.7 KiB
Plaintext

DROP DATABASE IF EXISTS test_invalid_args;
CREATE DATABASE test_invalid_args;
USE test_invalid_args;
create table cs1(i bigint)engine=columnstore;
select count(i) from cs1 where idbPartition('i') = '0.0.1';
ERROR HY000: Internal error: MCS-1006: Function called with unsupported datatype.
select count(i) from cs1 where idbPartition(1) = '0.0.1';
ERROR HY000: Internal error: MCS-1006: Function called with unsupported datatype.
select count(i) from cs1 where idbPartition(i) = '0.0.1';
count(i)
0
select count(i) from cs1 where idbExtentMin('i') = '0.0.1';
ERROR HY000: Internal error: MCS-1006: Function called with unsupported datatype.
select count(i) from cs1 where idbExtentRelativeRid('i') = '0.0.1';
ERROR HY000: Internal error: MCS-1006: Function called with unsupported datatype.
select count(i) from cs1 where idbExtentRelativeRid(3) = '0.0.1';
ERROR HY000: Internal error: MCS-1006: Function called with unsupported datatype.
select count(i) from cs1 where idbExtentRelativeRid(i);
count(i)
0
select count(i) from cs1 where idbPm('i') = '0.0.1';
ERROR HY000: Internal error: MCS-1006: Function called with unsupported datatype.
select count(i) from cs1 where idbPm(10) = '0.0.1';
ERROR HY000: Internal error: MCS-1006: Function called with unsupported datatype.
select count(i) from cs1 where idbPm(i);
count(i)
0
select count(i) from cs1 where idbSegmentDir('i') = '0.0.1';
ERROR HY000: Internal error: MCS-1006: Function called with unsupported datatype.
select count(i) from cs1 where idbSegmentDir(1) = '0.0.1';
ERROR HY000: Internal error: MCS-1006: Function called with unsupported datatype.
select count(i) from cs1 where idbSegmentDir(i);
count(i)
0
DROP DATABASE test_invalid_args;