[MCOL-4705] Retest MCOL-4613 in 6.1.1 given that the blocking fix for MCOL-4612 is merged into develop branch Created: 2021-04-30  Updated: 2021-06-10  Resolved: 2021-05-24

Status: Closed
Project: MariaDB ColumnStore
Component/s: ExeMgr
Affects Version/s: None
Fix Version/s: 6.1.1

Type: Task Priority: Blocker
Reporter: Gregory Dorman (Inactive) Assignee: Daniel Lee (Inactive)
Resolution: Fixed Votes: 0
Labels: test

Issue Links:
Issue split
split from MCOL-4613 Garbage result of a union between hug... Closed
Sprint: 2021-8

 Description   

There seems to be no PR or merge into 6.1.1 as of now. We need to make sure this does not reappear when we make it.



 Comments   
Comment by Daniel Lee (Inactive) [ 2021-05-24 ]

Build verified: 6.1.1 (Drone #2394)

Result now matches with Innodb.

MariaDB [monty]> DROP TABLE IF EXISTS t1;
Query OK, 0 rows affected, 1 warning (0.120 sec)
 
MariaDB [monty]> CREATE TABLE t1 (a DECIMAL(17,1), b BIGINT) ENGINE=ColumnStore;
Query OK, 0 rows affected (0.626 sec)
 
MariaDB [monty]> INSERT INTO t1 VALUES (9999999999999999.9, 999999999999999999);
Query OK, 1 row affected (0.276 sec)
 
MariaDB [monty]> SELECT * FROM (SELECT a FROM t1 UNION SELECT b FROM t1) tu;
+----------------------+
| a                    |
+----------------------+
| 999999999999999999.0 |
|   9999999999999999.9 |
+----------------------+
2 rows in set (0.123 sec)

Generated at Thu Feb 08 02:52:22 UTC 2024 using Jira 8.20.16#820016-sha1:9d11dbea5f4be3d4cc21f03a88dd11d8c8687422.