diff options
author | serg@sergbook.mysql.com <> | 2007-04-15 15:47:27 +0200 |
---|---|---|
committer | serg@sergbook.mysql.com <> | 2007-04-15 15:47:27 +0200 |
commit | c53037af36e1e7af2996299fc6f0d126619f2565 (patch) | |
tree | 4d70d7272be7222d34c74f20067114045c5e0253 /include/mysql | |
parent | d2384064f269b2eb78278ae615ed1b13c8fa95f6 (diff) | |
download | mariadb-git-c53037af36e1e7af2996299fc6f0d126619f2565.tar.gz |
more wl#2936 fixes: removed implicit ha_thd() calls (too error-prone),
fixed an assert crash
Diffstat (limited to 'include/mysql')
-rw-r--r-- | include/mysql/plugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mysql/plugin.h b/include/mysql/plugin.h index d15302dc256..751ce516a39 100644 --- a/include/mysql/plugin.h +++ b/include/mysql/plugin.h @@ -651,6 +651,7 @@ long long thd_test_options(const MYSQL_THD thd, long long test_options); int thd_sql_command(const MYSQL_THD thd); const char *thd_proc_info(MYSQL_THD thd, const char *info); void **thd_ha_data(const MYSQL_THD thd, const struct handlerton *hton); +int thd_tx_isolation(const MYSQL_THD thd); char *thd_security_context(MYSQL_THD thd, char *buffer, unsigned int length, unsigned int max_query_len); |