You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-02 06:13:16 +03:00
13 lines
392 B
Plaintext
13 lines
392 B
Plaintext
--disable_warnings
|
|
DROP DATABASE IF EXISTS test_invalid_args;
|
|
CREATE DATABASE test_invalid_args;
|
|
USE test_invalid_args;
|
|
--enable_warnings
|
|
|
|
create table cs1(i bigint)engine=columnstore;
|
|
|
|
# incorrect args - idbpartition must receive column name and it received a string literal
|
|
--error 1815
|
|
select count(i) from cs1 where idbpartition('i') = '0.0.1';
|
|
# Clean UP
|
|
DROP DATABASE test_invalid_args; |