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
Recorded reference results
This commit is contained in:
@ -1,10 +1,6 @@
|
||||
USE tpch1;
|
||||
drop table if exists bug3436a;
|
||||
Warnings:
|
||||
Note 1051 Unknown table 'tpch1.bug3436a'
|
||||
drop table if exists bug3436b;
|
||||
Warnings:
|
||||
Note 1051 Unknown table 'tpch1.bug3436b'
|
||||
create table bug3436a (i int, j int, c1 tinyint, c2 decimal(2,1), c3 decimal(4,0), c4 decimal(4,2), c5 float, c6 double) engine=columnstore;
|
||||
insert into bug3436a values (1, 1, 1, 1.1, 9991, 99.1, 1.1, 1.1), (1, 1, 2, 2.2, 9992, 99.2, 2.2, 2.2), (2, 2, 1, 1.1, 9993, 99.3, 1.1, 1.1), (2, 2, 2, 2.2, 9994, 99.4, 2.2, 2.2), (1, 1, 127, 9.1, 9995, 99.5, 127.1, 127.1), (1, 2, 100, 9.2, 9996, 99.6, 100.2, 100.2);
|
||||
create table bug3436b (k int) engine=columnstore;
|
||||
|
Reference in New Issue
Block a user