[MCOL-5377] Columnstore appears to allow a Temporary Table to be created and altered, but then not dropped Created: 2022-12-30 Updated: 2023-02-01 |
|
| Status: | Open |
| Project: | MariaDB ColumnStore |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | Icebox |
| Type: | Bug | Priority: | Major |
| Reporter: | Maria M Pflaum | Assignee: | Unassigned |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Environment: |
Customer repro on 22.08.3 |
||
| Description |
|
Using Alter table like make it look like a temporary table was created: MariaDB [(none)]> use test; MariaDB [test]> show tables;
-------------------
------------------- show create table columnstore_table;
1 row in set (0.015 sec) MariaDB [test]> CREATE TEMPORARY TABLE temp1 LIKE test.columnstore_table; MariaDB [test]> show create table temp1;
1 row in set (0.015 sec) MariaDB [test]> ALTER TABLE test.temp1 ENGINE = InnoDB; MariaDB [test]> show create table temp1; MariaDB [test]> ALTER TABLE test.temp1 ENGINE = InnoDB; MariaDB [test]> show create table temp1;
1 row in set (0.015 sec) MariaDB [test]> DROP TEMPORARY TABLE temp1; MariaDB [test]> CREATE TEMPORARY TABLE temp1 LIKE test.columnstore_table; |
| Comments |
| Comment by Maria M Pflaum [ 2023-01-05 ] |
|
This worked to delete table temp1: |