[MCOL-4231] INSERT IGNORE with multiple rows fails Created: 2020-08-05 Updated: 2023-10-26 Resolved: 2023-10-26 |
|
| Status: | Closed |
| Project: | MariaDB ColumnStore |
| Component/s: | DMLProc |
| Affects Version/s: | None |
| Fix Version/s: | Icebox |
| Type: | Bug | Priority: | Major |
| Reporter: | susil.behera | Assignee: | Unassigned |
| Resolution: | Won't Do | Votes: | 0 |
| Labels: | None | ||
| Environment: |
Server version: 10.5.5-MariaDB MariaDB Server |
||
| Description |
|
INSERT IGNORE works with single row whereas with multiple row it fails. MariaDB [test]> CREATE TABLE t1 (col1 INT) ENGINE=Columnstore; MariaDB [test]> INSERT IGNORE INTO t1 VALUES(1); MariaDB [test]> INSERT IGNORE INTO t1 VALUES (1),(2); |