1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-05 16:15:50 +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

18 lines
452 B
Plaintext

#
# Test case migrated from regression test suite:
# ./mysql/queries/nightly/alltest/test000/tpchSchemaValidation/j11.sql
#
# Author: Susil, susil.behera@mariadb.com
#
-- source ../include/have_columnstore.inc
--disable_warnings
drop table if exists j11;
--enable_warnings
create table j11 (j11_key int)engine=columnstore;
insert into j11 values (11),(12),(13),(14),(15),(16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(null);
select * from j11;