1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-07 03:22:57 +03:00
Files
Daniel Lee ec2e490737 Danielsmtrupdate (#2357)
* Old precision issue.  New results matching server results now

* Value overflow issue.  New result matching server result now

* Showing correct column name now

* Added --disable_warning to subpress warnings that cause result mismatched

* Need to add one more result file
2022-05-02 11:49:42 -05:00

22 lines
235 B
Plaintext

drop table if exists j1;
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);
select * from j1;
j1_key
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
NULL