[MCOL-4006] DELETE followed by DROP TABLE may crash Created: 2020-05-18 Updated: 2023-10-26 Resolved: 2023-10-26 |
|
| Status: | Closed |
| Project: | MariaDB ColumnStore |
| Component/s: | MDB Plugin |
| Affects Version/s: | 1.4.3 |
| Fix Version/s: | Icebox |
| Type: | Bug | Priority: | Major |
| Reporter: | David Hall (Inactive) | Assignee: | Unassigned |
| Resolution: | Won't Fix | Votes: | 0 |
| Labels: | None | ||
| Description |
|
When autocommit is on, all DML should cause an implicit COMMIT. DELETE appears to be committing the data, but COMMIT is not being issued. create table t1 (c1 int)engine=columnstore; This is problematic in that it causes goofy errors. This can really confuse a user. This happened in 1.2 as well, but it was never detected because Server didn't debug assert under these circumstances. After a delete, the data change shows correctly in other sessions as would be expected had a COMMIT been executed, so something is going right. |