diff options
author | unknown <hf@deer.(none)> | 2003-10-04 19:28:08 +0500 |
---|---|---|
committer | unknown <hf@deer.(none)> | 2003-10-04 19:28:08 +0500 |
commit | 759aabf7df936bd8c39d032ca168acc85e60d7b0 (patch) | |
tree | fc0a7f5d6971cd34c41f30f95658060011cf1f4f /include/mysql.h | |
parent | ee3bf94cbd001e9a97dfb4ba5ca6e298d91447cf (diff) | |
download | mariadb-git-759aabf7df936bd8c39d032ca168acc85e60d7b0.tar.gz |
Fix for bugs #1437, #1446
include/mysql.h:
read_statistic added to virtual methods
libmysql/client_settings.h:
interface for cli_read_statistic added
libmysql/libmysql.c:
read_statistic and mysql_stat code changes
libmysqld/lib_sql.cc:
emb_read_statistic implemented
server_version initialized
sql-common/client.c:
cli_read_statistic added to the table
sql/sql_parse.cc:
storage of result of COM_STATISTIC changed in embedded library
Diffstat (limited to 'include/mysql.h')
-rw-r--r-- | include/mysql.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mysql.h b/include/mysql.h index 95f480b41c1..9a8d2b07220 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -565,6 +565,7 @@ typedef struct st_mysql_methods MYSQL_DATA *(STDCALL *read_binary_rows)(MYSQL_STMT *stmt); int (STDCALL *unbuffered_fetch)(MYSQL *mysql, char **row); void (STDCALL *free_embedded_thd)(MYSQL *mysql); + const char *(STDCALL *read_statistic)(MYSQL *mysql); #endif } MYSQL_METHODS; |