Commit 4aafb1ef authored by monty@mysql.com's avatar monty@mysql.com

Cleanup + safety comment

parent 3e1ec199
...@@ -238,5 +238,7 @@ ...@@ -238,5 +238,7 @@
"Wrong usage/placement of '%s'", "Wrong usage/placement of '%s'",
"This version of MySQL doesn't yet support '%s'", "This version of MySQL doesn't yet support '%s'",
"Got fatal error %d: '%-.128s' from master when reading data from binary log", "Got fatal error %d: '%-.128s' from master when reading data from binary log",
"Slave SQL thread ignored the query because of replicate-*-table rules" "Slave SQL thread ignored the query because of replicate-*-table rules",
"Variable '%-.64s' is a %s variable" "Variable '%-.64s' is a %s variable"
] # End of error messages
# Do NOT add new error messages here as this makes merges to 4.1 too hard!
...@@ -92,12 +92,7 @@ int mysql_load(THD *thd,sql_exchange *ex,TABLE_LIST *table_list, ...@@ -92,12 +92,7 @@ int mysql_load(THD *thd,sql_exchange *ex,TABLE_LIST *table_list,
LOAD_FILE_INFO lf_info; LOAD_FILE_INFO lf_info;
char *db = table_list->db; // This is never null char *db = table_list->db; // This is never null
/* If no current database, use database where table is located */ /* If no current database, use database where table is located */
char *tdb= thd->db ? thd->db : db; char *tdb= thd->db ? thd->db : db; // Result is never null
/*
'tdb' can be NULL only if both table_list->db and thd->db are NULL
'db' itself can be NULL. but in that case it will generate
an error earlier open_ltable()).
*/
bool transactional_table, log_delayed; bool transactional_table, log_delayed;
ulong skip_lines= ex->skip_lines; ulong skip_lines= ex->skip_lines;
DBUG_ENTER("mysql_load"); DBUG_ENTER("mysql_load");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment