diff options
author | holyfoot/hf@mysql.com/deer.(none) <> | 2006-10-24 17:19:02 +0500 |
---|---|---|
committer | holyfoot/hf@mysql.com/deer.(none) <> | 2006-10-24 17:19:02 +0500 |
commit | d0ef58b6a481134610640857ec54d0259f151669 (patch) | |
tree | 15b5251cf1b2339c2a889b5a6e552e9e9e6fcd1d /include/mysql.h | |
parent | 0612a212d129501436025403787c48f74879b00a (diff) | |
download | mariadb-git-d0ef58b6a481134610640857ec54d0259f151669.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
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 { |