You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
Updated test case
This commit is contained in:
@ -1,6 +1,4 @@
|
|||||||
drop table if exists j1;
|
drop table if exists j1;
|
||||||
Warnings:
|
|
||||||
Note 1051 Unknown table 'test.j1'
|
|
||||||
create table j1 (j1_key int)engine=columnstore;
|
create table j1 (j1_key int)engine=columnstore;
|
||||||
insert into j1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(null);
|
insert into j1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(null);
|
||||||
select * from j1;
|
select * from j1;
|
||||||
@ -21,3 +19,4 @@ j1_key
|
|||||||
14
|
14
|
||||||
15
|
15
|
||||||
NULL
|
NULL
|
||||||
|
drop table j1;
|
||||||
|
@ -7,10 +7,13 @@
|
|||||||
|
|
||||||
-- source ../include/have_columnstore.inc
|
-- source ../include/have_columnstore.inc
|
||||||
|
|
||||||
|
--disable_warnings
|
||||||
drop table if exists j1;
|
drop table if exists j1;
|
||||||
|
--enable_warnings
|
||||||
|
|
||||||
create table j1 (j1_key int)engine=columnstore;
|
create table j1 (j1_key int)engine=columnstore;
|
||||||
|
|
||||||
insert into j1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(null);
|
insert into j1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(null);
|
||||||
|
|
||||||
select * from j1;
|
select * from j1;
|
||||||
|
drop table j1;
|
||||||
|
Reference in New Issue
Block a user