mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-20 09:07:44 +03:00
* Add MTR_SUITE_LIST * Typo * Add data download * Install tar and lz4 * Change the way MTR_SUITE_LIST is set up * Use bash for MTR_SUITE_LIST * Another one * Fix reference results for full MTR develop, disable broken JSON test and tests with 10GB database * Fix timestamps and truncate cos * Fix some more references * Fix dokcerhub step for custom build * One more fix for dockerhub step on custom build * Fix tests for regr functions with truncate * Full mtr set on nghtly + MTR_FULL_SET flag * One more fix for dockerhub * Fix MTR_FULL_SET * Testing MTR_FULL_SET * sorted_result in tests + fix typo * Truncate even more * Typo * truncate 2 more tests * Disable regr_* functions tests * fix setup mtr step * correct settings for table creation * Put setup for tests into drone * Fix for debian based distros * More truncates * Disable the rest --------- Co-authored-by: Leonid Fedorov <leonid.fedorov@mariadb.com>
50 lines
2.4 KiB
Plaintext
50 lines
2.4 KiB
Plaintext
# -------------------------------------------------------------- #
|
|
# Test case migrated from regression test suite: bug5715.sql
|
|
#
|
|
# Author: Daniel Lee, daniel.lee@mariadb.com
|
|
# -------------------------------------------------------------- #
|
|
#
|
|
--source ../include/have_columnstore.inc
|
|
#
|
|
USE tpch1;
|
|
#
|
|
#-- turn infinidb_double_for_decimal_math on
|
|
set columnstore_double_for_decimal_math = 1;
|
|
|
|
#-- bug5715
|
|
--disable_warnings
|
|
drop table if exists `p2_loaded_uh_p_xml_fsc_2x_for_agg_201310_valid_sess`;
|
|
--enable_warnings
|
|
|
|
create table `p2_loaded_uh_p_xml_fsc_2x_for_agg_201310_valid_sess` ( `session_duration` decimal(13,3) not null,`session_idle_down_duration` decimal(13,3) not null, `session_q5_down` int(11) not null ) engine=columnstore default charset=latin1;
|
|
insert into p2_loaded_uh_p_xml_fsc_2x_for_agg_201310_valid_sess values (1032632.1 , 86382, 1273564557);
|
|
select session_duration as session_duration, session_idle_down_duration as session_idle_down_duration, session_q5_down as session_q5_down, truncate(session_duration*session_q5_down, 2) as result_1, truncate((session_duration*session_q5_down)*8, 2) as result_2, (1032632.1*1273564557)*8 as result_3 from p2_loaded_uh_p_xml_fsc_2x_for_agg_201310_valid_sess t1;
|
|
|
|
#-- bug2437
|
|
--disable_warnings
|
|
drop table if exists bug2437;
|
|
--enable_warnings
|
|
create table bug2437 (col1 decimal(6,4)) engine=columnstore;
|
|
insert into bug2437 values (10.0001);
|
|
select truncate(col1*2.0002*2.0000002*0.999999999999, 9) from bug2437;
|
|
select truncate(col1*4.00040040003599959959996, 9) from bug2437;
|
|
|
|
#-- bug5697
|
|
select (count(*)/72143371)*100,(6001215/72143371)*100,(count(*)*100)/72143371,(6001215*100)/72143371 from lineitem;
|
|
|
|
#-- turn infinidb_double_for_decimal_math off
|
|
set columnstore_double_for_decimal_math = 0;
|
|
|
|
select session_duration as session_duration, session_idle_down_duration as session_idle_down_duration, session_q5_down as session_q5_down, session_duration*session_q5_down as result_1, (session_duration*session_q5_down)*8 as result_2, (1032632.1*1273564557)*8 as result_3 from p2_loaded_uh_p_xml_fsc_2x_for_agg_201310_valid_sess t1;
|
|
|
|
select col1*2.0002*2.0000002*0.999999999999 from bug2437;
|
|
select col1*4.00040040003599959959996 from bug2437;
|
|
|
|
select (count(*)/72143371)*100,(6001215/72143371)*100,(count(*)*100)/72143371,(6001215*100)/72143371 from lineitem;
|
|
#
|
|
--disable_warnings
|
|
drop table `p2_loaded_uh_p_xml_fsc_2x_for_agg_201310_valid_sess`;
|
|
drop table bug2437;
|
|
--enable_warnings
|
|
#
|