1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-24 14:20:59 +03:00
Files
mariadb-columnstore-engine/mysql-test/columnstore/devregression/r/mcs7219_regression_MCOL-3395.result
Daniel Lee 4c9d6e39ac Dlee mtr restructure (#2494)
* Restructured test suites and added autopilot and extended suites

* Updated autopilot with correct branch - develop

* Moved setup test case to a 'setup' directory, for consistency

* Fixed a path issue

* Updated some tests cases to keep up with development

Co-authored-by: root <root@rocky8.localdomain>
2022-08-09 21:20:56 +03:00

11 lines
330 B
Plaintext

USE tpch1;
drop table if exists mcol3395;
Warnings:
Note 1051 Unknown table 'tpch1.mcol3395'
create table mcol3395 (c1 char(10), c2 varchar(10), c3 varchar(6))engine=columnstore;
insert into mcol3395 values ('abc','cde','abc'), ('cde','abc','cde');
select * from mcol3395 where c2='abc';
c1 c2 c3
cde abc cde
drop table mcol3395;