You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-09-11 08:50:45 +03:00
36 lines
1.7 KiB
Plaintext
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;
|