1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-11-25 20:23:16 +03:00
Files
mariadb-columnstore-engine/mtr/csinternal/devregression/r/mcs7081_regression_bug3458.result
mariadb-RomanNavrotskiy 73b4147cf3 move mtr suites here
2021-01-31 01:38:31 +02: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