summaryrefslogtreecommitdiff
path: root/include/mysql.h
diff options
context:
space:
mode:
authorunknown <hf@deer.(none)>2003-09-29 14:09:51 +0500
committerunknown <hf@deer.(none)>2003-09-29 14:09:51 +0500
commit15779a96d719e42aaf3c56a65ead971ec08465fc (patch)
treee6a406a016c1af6cb1f6d39ec322de1723cf85f1 /include/mysql.h
parent9a942c854fb232341037b7bc12e4e084be1b4692 (diff)
downloadmariadb-git-15779a96d719e42aaf3c56a65ead971ec08465fc.tar.gz
SCRUM
embedded library some fixes - cleanup procedure changed for embedded library - deletion of embedded mysql->thd include/mysql.h: free_embedded_thd added to the list of virtual methods libmysqld/embedded_priv.h: function deleted libmysqld/lib_sql.cc: function moved upper in file sql-common/client.c: call of free_embedded_thd added
Diffstat (limited to 'include/mysql.h')
-rw-r--r--include/mysql.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql.h b/include/mysql.h
index 963c35e92ea..95f480b41c1 100644
--- a/include/mysql.h
+++ b/include/mysql.h
@@ -564,8 +564,8 @@ typedef struct st_mysql_methods
int (STDCALL *stmt_execute)(MYSQL_STMT *stmt);
MYSQL_DATA *(STDCALL *read_binary_rows)(MYSQL_STMT *stmt);
int (STDCALL *unbuffered_fetch)(MYSQL *mysql, char **row);
+ void (STDCALL *free_embedded_thd)(MYSQL *mysql);
#endif
-
} MYSQL_METHODS;
MYSQL_STMT * STDCALL mysql_prepare(MYSQL * mysql, const char *query,