1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

true,false -> TRUE, FALSE

Simple fixes/optimization of things discovered during review of new pushed code
This commit is contained in:
monty@mishka.local
2004-10-14 18:03:46 +03:00
parent 0543320240
commit 719c88e38f
17 changed files with 185 additions and 131 deletions

View File

@@ -223,7 +223,7 @@ int mysql_rm_table_part2(THD *thd, TABLE_LIST *tables, bool if_exists,
(void) unpack_filename(path,path);
}
if (drop_temporary ||
(access(path,F_OK) && ha_create_table_from_engine(thd,db,alias,true)))
(access(path,F_OK) && ha_create_table_from_engine(thd,db,alias,TRUE)))
{
if (if_exists)
push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_NOTE,