diff options
author | unknown <serg@sergbook.mysql.com> | 2007-04-15 15:47:27 +0200 |
---|---|---|
committer | unknown <serg@sergbook.mysql.com> | 2007-04-15 15:47:27 +0200 |
commit | add378761542ade65340b9477ed298e9a1677b10 (patch) | |
tree | 4d70d7272be7222d34c74f20067114045c5e0253 /include/mysql/plugin.h | |
parent | 18f02e0aeb39f9ef25c9b0cfd126c5694ba21996 (diff) | |
download | mariadb-git-add378761542ade65340b9477ed298e9a1677b10.tar.gz |
more wl#2936 fixes: removed implicit ha_thd() calls (too error-prone),
fixed an assert crash
include/mysql/plugin.h:
more wl#2936 fixes: no implicit ha_thd() calls
mysql-test/mysql-test-run.pl:
don't load system-wide plugins
mysql-test/r/partition_innodb.result:
fix the test
mysql-test/t/partition_innodb.test:
fix the test
sql/handler.cc:
more wl#2936 fixes: no implicit ha_thd() calls
sql/handler.h:
more wl#2936 fixes: no implicit ha_thd() calls
sql/sql_class.cc:
more wl#2936 fixes: no implicit ha_thd() calls
sql/sql_plugin.cc:
more wl#2936 fixes: assert crash
storage/innobase/handler/ha_innodb.cc:
more wl#2936 fixes: no implicit ha_thd() calls
Diffstat (limited to 'include/mysql/plugin.h')
-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); |