mirror of
https://github.com/MariaDB/server.git
synced 2025-11-08 00:28:29 +03:00
Create innodb table space if configuring with InnoDB and not using --skip-innodb Fixes for TRUNCATE TABLE and DROP DATABASE. Docs/manual.texi: Update of manual with 4.0 changes. mysql-test/mysql-test-run.sh: Fixed option --mysqld mysql-test/r/innodb.result: More test cases mysql-test/r/truncate.result: More test cases mysql-test/t/drop.test: More test cases mysql-test/t/innodb.test: More test cases mysql-test/t/truncate.test: More test cases sql/gen_lex_hash.cc: Smaller array sql/ha_innobase.cc: Create innodb table space if not using --skip-innodb sql/lock.cc: Fixed wrong mutex handling in global read lock. sql/md5.c: Fixed bug from merge sql/sql_base.cc: cleanup sql/sql_db.cc: Use new global lock functions. Fixed new bug that database wasn't always dropped. sql/sql_delete.cc: Fixed problem with mysql_truncate() when called from restore_table sql/sql_parse.cc: Fixed error message handling. sql/sql_table.cc: cleanup
44 lines
1.0 KiB
Plaintext
44 lines
1.0 KiB
Plaintext
drop table if exists t1;
|
|
drop table if exists t1;
|
|
--error 1051;
|
|
drop table t1;
|
|
create table t1(n int);
|
|
insert into t1 values(1);
|
|
create temporary table t1( n int);
|
|
insert into t1 values(2);
|
|
--error 1050;
|
|
create table t1(n int);
|
|
drop table t1;
|
|
select * from t1;
|
|
|
|
#now test for a bug in drop database - it is important that the name
|
|
#of the table is the same as the name of the database - in the original
|
|
#code this triggered a bug
|
|
drop database if exists foo;
|
|
create database foo;
|
|
drop database if exists foo;
|
|
create database foo;
|
|
create table foo.foo (n int);
|
|
insert into foo.foo values (4);
|
|
select * from foo.foo;
|
|
drop database if exists foo;
|
|
create database foo;
|
|
drop database foo;
|
|
|
|
# test drop/create database and FLUSH TABLES WITH READ LOCK
|
|
drop database if exists foo;
|
|
flush tables with read lock;
|
|
--error 1209,1218;
|
|
create database foo;
|
|
unlock tables;
|
|
create database foo;
|
|
show databases;
|
|
flush tables with read lock;
|
|
--error 1208,1218;
|
|
drop database foo;
|
|
unlock tables;
|
|
drop database foo;
|
|
show databases;
|
|
--error 1008
|
|
drop database foo;
|