diff options
author | unknown <monty@mysql.com> | 2004-04-06 12:13:43 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-04-06 12:13:43 +0300 |
commit | 11913b45d0e469ba33f22b0b097c2132ef0036fc (patch) | |
tree | 509557fea33580a9b087dce685c789de3664b19e /mysql-test/r/lowercase_table2.result | |
parent | 386b7194ce6261137b49df07932c96d4c6195dfa (diff) | |
download | mariadb-git-11913b45d0e469ba33f22b0b097c2132ef0036fc.tar.gz |
Fixed warnings from valgrind (not a bug)
Don't add -debug to server version if MYSQL_SERVER_PREFIX is used
Indentation cleanups
myisam/mi_write.c:
Indentation cleanup
mysql-test/r/lowercase_table2.result:
Fixed test results
sql/filesort.cc:
Fixed warnings from valgrind (not a bug)
sql/ha_myisam.cc:
Indentation cleanup
sql/mysqld.cc:
Don't add -debug to server if MYSQL_SERVER_PREFIX is used
sql/sql_base.cc:
Indentation cleanup
sql/sql_show.cc:
Fixed typo in comment
sql/sql_table.cc:
Indentation cleanup
Diffstat (limited to 'mysql-test/r/lowercase_table2.result')
-rw-r--r-- | mysql-test/r/lowercase_table2.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/lowercase_table2.result b/mysql-test/r/lowercase_table2.result index 737d49fc340..c29d52ffffc 100644 --- a/mysql-test/r/lowercase_table2.result +++ b/mysql-test/r/lowercase_table2.result @@ -13,7 +13,7 @@ SHOW CREATE TABLE T1; Table Create Table T1 CREATE TABLE `T1` ( `a` int(11) default NULL -) TYPE=MyISAM +) ENGINE=MyISAM DEFAULT CHARSET=latin1 RENAME TABLE T1 TO T2; SHOW TABLES LIKE "T2"; Tables_in_test (T2) @@ -68,7 +68,7 @@ SHOW CREATE TABLE T1; Table Create Table T1 CREATE TABLE `T1` ( `a` int(11) default NULL -) TYPE=InnoDB +) ENGINE=InnoDB DEFAULT CHARSET=latin RENAME TABLE T1 TO T2; SHOW TABLES LIKE "T2"; Tables_in_test (T2) |