summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <cmiller@zippy.cornsilk.net>2006-10-20 17:17:24 -0400
committerunknown <cmiller@zippy.cornsilk.net>2006-10-20 17:17:24 -0400
commitaaf7228f4c0cba501894a0ddea8f8175e0ac47e1 (patch)
treedc38a0ac4d8da2f9fd0658fb3874f7f9b812eaac
parentad57fc6b433bf13c0a2cdfcaa10a1a031f846e74 (diff)
downloadmariadb-git-aaf7228f4c0cba501894a0ddea8f8175e0ac47e1.tar.gz
Bug #23427: incompatible ABI change in 5.0.26?
Revert 1 June change enough to restore ABI compatibility with previous versions. include/mysql.h: Revert patch that breaks ABI compatibility libmysqld/lib_sql.cc: Remove useless assignment.
-rw-r--r--include/mysql.h6
-rw-r--r--libmysqld/lib_sql.cc1
2 files changed, 0 insertions, 7 deletions
diff --git a/include/mysql.h b/include/mysql.h
index ae4a8222c5b..8ef3f1273ec 100644
--- a/include/mysql.h
+++ b/include/mysql.h
@@ -293,12 +293,6 @@ typedef struct st_mysql
/* needed for embedded server - no net buffer to store the 'info' */
char *info_buffer;
#endif
- /*
- 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 {
diff --git a/libmysqld/lib_sql.cc b/libmysqld/lib_sql.cc
index 40966be46a5..98c75dfe719 100644
--- a/libmysqld/lib_sql.cc
+++ b/libmysqld/lib_sql.cc
@@ -100,7 +100,6 @@ emb_advanced_command(MYSQL *mysql, enum enum_server_command command,
mysql->affected_rows= ~(my_ulonglong) 0;
mysql->field_count= 0;
net->last_errno= 0;
- mysql->current_stmt= stmt;
thd->store_globals(); // Fix if more than one connect
/*