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
9 lines
249 B
Plaintext
9 lines
249 B
Plaintext
USE tpch1;
|
|
drop table if exists MCOL_671;
|
|
CREATE TABLE MCOL_671 (a int, b text) engine=columnstore;
|
|
INSERT INTO MCOL_671 VALUES (1, REPEAT('MariaDB ', 7500));
|
|
SELECT a, length(b) FROM MCOL_671 WHERE b > 'K';
|
|
a length(b)
|
|
1 60000
|
|
DROP TABLE MCOL_671;
|