1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Dlee mtr restructure (#2494)

* Restructured test suites and added autopilot and extended suites

* Updated autopilot with correct branch - develop

* Moved setup test case to a 'setup' directory, for consistency

* Fixed a path issue

* Updated some tests cases to keep up with development

Co-authored-by: root <root@rocky8.localdomain>
This commit is contained in:
Daniel Lee
2022-08-09 13:20:56 -05:00
committed by GitHub
parent 8b15e2f6a4
commit 4c9d6e39ac
6839 changed files with 10542409 additions and 77 deletions

View File

@ -0,0 +1,23 @@
USE tpch1;
drop table if exists bug3267;
Warnings:
Note 1051 Unknown table 'tpch1.bug3267'
create table bug3267 (c1 decimal(12, 6), c2 float) engine=columnstore;
insert into bug3267 values (5.240620, 5.24062e+06), (7.240620, 7.24062e+06), (9.940620, 9.94062e+06), (5.240620, 5.24062), (-4.44, -4.44), (-8.87, -8.87);
select floor(c1), ceil(c1), c1 from bug3267;
floor(c1) ceil(c1) c1
5 6 5.240620
7 8 7.240620
9 10 9.940620
5 6 5.240620
-5 -4 -4.440000
-9 -8 -8.870000
select floor(c2), ceil(c2), c2 from bug3267;
floor(c2) ceil(c2) c2
5240620 5240620 5240620
7240620 7240620 7240620
9940620 9940620 9940620
5 6 5.24062
-5 -4 -4.44
-9 -8 -8.87
drop table if exists bug3267;