mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-18 21:44:02 +03:00
Sometimes server assigns DOUBLE type for arithmetic operations over DECIMAL arguments. In this rare case width of result was incorrectly adjusted and it triggered an assertion. Now width of result gets adjusted only if result type is also DECIMAL.
26 lines
567 B
Plaintext
26 lines
567 B
Plaintext
DROP DATABASE IF EXISTS MCOL5889;
|
|
CREATE DATABASE MCOL5889;
|
|
USE MCOL5889;
|
|
CREATE TABLE t1 (f1 DECIMAL, f2 BIGINT, f3 DOUBLE) ENGINE=columnstore;
|
|
CREATE TABLE t2 (f1 DECIMAL, f2 INT, f3 DOUBLE) ENGINE=columnstore;
|
|
INSERT INTO t1 VALUES (1, 2, 3), (2, 3, 4), (3, 4, 5);
|
|
INSERT INTO t2 VALUES (4, 5, 6), (5, 6, 7), (6, 7, 8);
|
|
SELECT f1, f2, f3, f2 * f3 FROM
|
|
(
|
|
SELECT f1, f2, AVG(f3) f3 FROM
|
|
(
|
|
SELECT f1, f2, f3 FROM t1
|
|
UNION ALL
|
|
SELECT f1, f2, f3 FROM t2
|
|
) U
|
|
GROUP BY f1
|
|
) V;
|
|
f1 f2 f3 f2 * f3
|
|
1 2 3 6
|
|
2 3 4 12
|
|
3 4 5 20
|
|
4 5 6 30
|
|
5 6 7 42
|
|
6 7 8 56
|
|
DROP DATABASE MCOL5889;
|