1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00
Files
mariadb-columnstore-engine/mysql-test/columnstore/devregression/r/mcs7081_regression_bug3458.result
Daniel Lee 4c9d6e39ac 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>
2022-08-09 21:20:56 +03:00

28 lines
467 B
Plaintext

USE tpch1;
select cidx, CAST(132.499*cidx AS DECIMAL(9,2)) from datatypetestm order by cidx;
cidx CAST(132.499*cidx AS DECIMAL(9,2))
1 132.50
2 265.00
3 397.50
4 530.00
5 662.50
6 794.99
7 927.49
8 1059.99
9 1192.49
10 1324.99
11 1457.49
select cidx, convert(132.499*cidx, decimal(9,2)) from datatypetestm order by cidx;
cidx convert(132.499*cidx, decimal(9,2))
1 132.50
2 265.00
3 397.50
4 530.00
5 662.50
6 794.99
7 927.49
8 1059.99
9 1192.49
10 1324.99
11 1457.49