diff options
author | Alexey Botchkov <holyfoot@mysql.com> | 2009-02-24 15:29:49 +0400 |
---|---|---|
committer | Alexey Botchkov <holyfoot@mysql.com> | 2009-02-24 15:29:49 +0400 |
commit | d5de8c76e6ab1598bd088bc48b1807e8fc0fa0f5 (patch) | |
tree | 39b638f3059d5a325a196d7040c92179045f1882 /libmysqld | |
parent | 95f5d6a2cdb1d3f4afcd95a5fa9e267c1f3a14b8 (diff) | |
parent | da1d159fbfca1bc5f38bd24da633fb7cf1686f58 (diff) | |
download | mariadb-git-d5de8c76e6ab1598bd088bc48b1807e8fc0fa0f5.tar.gz |
merging.
Diffstat (limited to 'libmysqld')
-rw-r--r-- | libmysqld/lib_sql.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libmysqld/lib_sql.cc b/libmysqld/lib_sql.cc index 23572ad4929..d644c45a66a 100644 --- a/libmysqld/lib_sql.cc +++ b/libmysqld/lib_sql.cc @@ -43,6 +43,15 @@ extern char mysql_server_last_error[MYSQL_ERRMSG_SIZE]; static my_bool emb_read_query_result(MYSQL *mysql); +extern "C" void unireg_clear(int exit_code) +{ + DBUG_ENTER("unireg_clear"); + clean_up(!opt_help && (exit_code || !opt_bootstrap)); /* purecov: inspected */ + my_end(opt_endinfo ? MY_CHECK_ERROR | MY_GIVE_INFO : 0); + DBUG_VOID_RETURN; +} + + /* Reads error information from the MYSQL_DATA and puts it into proper MYSQL members |