1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00

Fix bug in ALTER TABLE on a TEMPORARY InnoDB table.

This commit is contained in:
monty@hundin.mysql.fi
2001-11-07 23:18:12 +02:00
parent af2e13481e
commit 1bc03e8b17
5 changed files with 16 additions and 3 deletions

View File

@@ -489,6 +489,8 @@ insert into t1 values (NULL),(NULL),(NULL);
delete from t1 where a=3;
insert into t1 values (NULL);
select * from t1;
alter table t1 add b int;
select * from t1;
drop table t1;
#Slashdot bug
@@ -511,4 +513,3 @@ set insert_id=6;
replace into t1 (value,name,uid) values ('other value','two',102);
select * from t1;
drop table t1;