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 optest;
Warnings:
Note 1051 Unknown table 'tpch1.optest'
create table optest (id int, c1 date, c2 decimal(4,2), c3 date) engine=columnstore;
insert into optest values (0, '2011-01-27', null, '1999-08-25'), (1, null, null, null), (2, '2001-01-05', 2.34, null), (3, null, null, '2001-05-03');
select * from optest where (year(c1) = 2011 or c2 = 2.34) or month(c3) = 1;
@@ -70,8 +68,6 @@ id c1 c2 c3
0 2011-01-27 NULL 1999-08-25
3 NULL NULL 2001-05-03
drop table if exists bug3442b;
Warnings:
Note 1051 Unknown table 'tpch1.bug3442b'
create table bug3442b (
idx int,
i1 int,