1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-07 03:22:57 +03:00

Recorded reference results

This commit is contained in:
root
2022-12-09 02:24:40 +00:00
parent f090e65298
commit 2ed151fa59
125 changed files with 10 additions and 574 deletions

View File

@@ -1,7 +1,5 @@
USE tpch1;
drop table if exists var_between;
Warnings:
Note 1051 Unknown table 'tpch1.var_between'
create table var_between (c1 varchar(10), c2 char(7)) engine=columnstore;
insert into var_between values ('099', '099');
insert into var_between values ('9', '9');
@@ -20,7 +18,6 @@ q3 9 9
q3 1 1
select 'q4', var_between.* from var_between where substr(c2,1,1) not between '0' and '9';
q4 c1 c2
drop table var_between;
select 'q5', count(*) from orders where substr(o_comment, 1, 1) between 'a' and 'f';
q5 count(*)
q5 388241
@@ -36,3 +33,4 @@ q8 165747
select 'q9', count(*) from orders where substr(o_totalprice, 2, 3) not between '200' and '300';
q9 count(*)
q9 1334253
drop table var_between;