diff options
author | unknown <holyfoot/hf@mysql.com/deer.(none)> | 2006-10-24 17:19:02 +0500 |
---|---|---|
committer | unknown <holyfoot/hf@mysql.com/deer.(none)> | 2006-10-24 17:19:02 +0500 |
commit | 6c4aa883ce15b6b5193d34caf72025548da56175 (patch) | |
tree | 15b5251cf1b2339c2a889b5a6e552e9e9e6fcd1d /include/mysql.h | |
parent | 0153d67e59c3049b94d7a28fa96cd963c202027d (diff) | |
download | mariadb-git-6c4aa883ce15b6b5193d34caf72025548da56175.tar.gz |
Bug #23427 (incompatible ABI change)
the incompatibility was caused by current_stmt member added to the MYSQL
structure.
It's possible to move it to THD structure instead which saves ABI
include/mysql.h:
member moved to the THD structure
libmysqld/lib_sql.cc:
now we use THD member here
sql/sql_class.h:
current_stmt member added for the embedded server
Diffstat (limited to 'include/mysql.h')
-rw-r--r-- | include/mysql.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/mysql.h b/include/mysql.h index 143f6752c46..89e861864df 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -270,12 +270,6 @@ typedef struct st_mysql from mysql_stmt_close if close had to cancel result set of this object. */ my_bool *unbuffered_fetch_owner; - /* - In embedded server it points to the statement that is processed - in the current query. We store some results directly in statement - fields then. - */ - struct st_mysql_stmt *current_stmt; } MYSQL; typedef struct st_mysql_res { |