diff options
author | monty@mysql.com <> | 2004-02-16 18:58:21 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2004-02-16 18:58:21 +0200 |
commit | c042a1a654f33f4d52d3fb09ab3087ed7296a78c (patch) | |
tree | 863605a0b0aedf6509bcdce0c874ee04d68c4caa /sql/sql_load.cc | |
parent | 4aafb1ef3d9387c1ec10efdf69e47bdceb6f083c (diff) | |
download | mariadb-git-c042a1a654f33f4d52d3fb09ab3087ed7296a78c.tar.gz |
Added comment
Diffstat (limited to 'sql/sql_load.cc')
-rw-r--r-- | sql/sql_load.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sql/sql_load.cc b/sql/sql_load.cc index 1603a7eb26a..a3ba14373b2 100644 --- a/sql/sql_load.cc +++ b/sql/sql_load.cc @@ -91,7 +91,11 @@ int mysql_load(THD *thd,sql_exchange *ex,TABLE_LIST *table_list, bool is_fifo=0; LOAD_FILE_INFO lf_info; char *db = table_list->db; // This is never null - /* If no current database, use database where table is located */ + /* + If path for file is not defined, we will use the current database. + If this is not set, we will use the directory where the table to be + loaded is located + */ char *tdb= thd->db ? thd->db : db; // Result is never null bool transactional_table, log_delayed; ulong skip_lines= ex->skip_lines; |