[MCOL-196] CS returns wrong warning error numbers/message for out of range values Created: 2016-06-24 Updated: 2016-12-22 Resolved: 2016-12-22 |
|
| Status: | Closed |
| Project: | MariaDB ColumnStore |
| Component/s: | MariaDB Server |
| Affects Version/s: | None |
| Fix Version/s: | 1.0.6 |
| Type: | Bug | Priority: | Major |
| Reporter: | Justin Swanhart (Inactive) | Assignee: | Unassigned |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | None | ||
| Description |
|
MariaDB [test]> insert into t3 values (10000),(-128); MariaDB [test]> show warnings;
--------
-------- This will cause all kinds of issues with scripts designed to handle errors and warnings for normal versions of MariaDB, including standard ETL processes designed to detect known error codes. |
| Comments |
| Comment by David Thompson (Inactive) [ 2016-12-22 ] | |||||||||
|
This is now better handled with 1.0.6 where the 2nd warning has a proper description. MariaDB [test]> create table t2(i1 tinyint, i2 tinyint) engine=columnstore; MariaDB [test]> insert into t2 values(10000, -128); MariaDB [test]> show warnings;
--------
-------- |