[MCOL-4203] DROP multiple tables throws error Created: 2020-07-21 Updated: 2023-10-26 Resolved: 2023-10-26 |
|
| Status: | Closed |
| Project: | MariaDB ColumnStore |
| Component/s: | DDLProc |
| Affects Version/s: | None |
| Fix Version/s: | Icebox |
| Type: | Bug | Priority: | Major |
| Reporter: | susil.behera | Assignee: | Unassigned |
| Resolution: | Won't Fix | Votes: | 0 |
| Labels: | None | ||
| Environment: |
Server version: 10.5.4-MariaDB MariaDB Server |
||
| Description |
|
Drop multiple tables fails when one of the tables is a columnstore table. MariaDB [test]> CREATE TABLE t_innodb (id INT) ENGINE=Innodb; MariaDB [test]> CREATE TABLE t_mcs1 (id INT) ENGINE=Columnstore; MariaDB [test]> CREATE TABLE t_mcs2 (id INT) ENGINE=Columnstore; MariaDB [test]> DROP TABLE t_mcs1, t_mcs2; MariaDB [test]> DROP TABLE t_mcs1, t_innodb; |
| Comments |
| Comment by susil.behera [ 2020-07-28 ] |
|
On the latest (pls see below) build the problem is not seen and seems to be fixed. |