[MCOL-4953] "Values Saturated" Error when using insert into.. select from.. from an Innodb int type to Columnstore mediumtext(8) Created: 2021-12-23 Updated: 2023-11-11 Resolved: 2023-11-11 |
|
| Status: | Closed |
| Project: | MariaDB ColumnStore |
| Component/s: | PrimProc |
| Affects Version/s: | 6.2.2 |
| Fix Version/s: | 23.10.0 |
| Type: | Bug | Priority: | Major |
| Reporter: | Maria M Pflaum | Assignee: | Roman |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | None | ||
| Description |
|
CREATE DATABASE panel; DROP TABLE if exists `cs_test`; CREATE TABLE `cs_test` ( `ONE_ID` MEDIUMINT(8) UNSIGNED NULL DEFAULT NULL, DROP TABLE if EXISTS `innodb_test`; `ONE_ID` MEDIUMINT(8) UNSIGNED NULL DEFAULT NULL, DROP TABLE if EXISTS `cs_test_int`; `ONE_ID` int UNSIGNED NULL DEFAULT NULL, INSERT INTO `innodb_test` VALUES ( 1163, 1163); insert into panel.cs_test insert into panel.cs_test_int #select Result: 16777215,16777215 SELECT ONE_ID,TWO_ID FROM panel.cs_test_int; MariaDB [panel]> select @@version;
-----------------------------
----------------------------- MariaDB [panel]> select * from information_schema.plugins where plugin_name = 'Columnstore';
------------
------------ |