1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

after merge fix

myisam/Makefile.am:
  put zlib at the end (libtool adds the whole bunch of dependencies right after that)
sql/Makefile.am:
  put zlib at the end (libtool adds the whole bunch of dependencies right after that)
This commit is contained in:
unknown
2004-08-20 22:54:42 +02:00
parent 5f74f8d5fa
commit 0745a2b783
8 changed files with 11 additions and 10 deletions

View File

@ -8,8 +8,11 @@ connect (con1,localhost,root,,);
connect (con2,localhost,root,,);
connect (con3,localhost,root,,);
connection con1;
--disable_warnings
drop table if exists t1;
create table t1 (a int) type=innodb;
--enable_warnings
create table t1 (a int) engine=innodb;
# blocks COMMIT ?