diff options
author | unknown <jimw@mysql.com> | 2005-07-06 16:29:31 -0700 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-07-06 16:29:31 -0700 |
commit | 813033338c451748a0e32af386d5b344940d6277 (patch) | |
tree | b10020e9d78356f2a1a05bf9802eb5f162391198 /include/mysql.h | |
parent | 348dfd416396cd6d7b541ddaef0d0ea71667fa67 (diff) | |
download | mariadb-git-813033338c451748a0e32af386d5b344940d6277.tar.gz |
Make it possible to change reconnect setting with
mysql_options(..., MYSQL_OPT_RECONNECT, ...). (Bug #11787)
client/mysqltest.c:
Use mysql_options(..., MYSQL_OPT_RECONNECT, ...) to change reconnect
include/mysql.h:
Add MYSQL_OPT_RECONNECT option
sql-common/client.c:
Allow changing reconnect using MYSQL_OPT_RECONNECT.
Diffstat (limited to 'include/mysql.h')
-rw-r--r-- | include/mysql.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql.h b/include/mysql.h index 84284fa0661..c77d531d0c1 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -146,7 +146,7 @@ enum mysql_option MYSQL_OPT_WRITE_TIMEOUT, MYSQL_OPT_USE_RESULT, MYSQL_OPT_USE_REMOTE_CONNECTION, MYSQL_OPT_USE_EMBEDDED_CONNECTION, MYSQL_OPT_GUESS_CONNECTION, MYSQL_SET_CLIENT_IP, MYSQL_SECURE_AUTH, - MYSQL_REPORT_DATA_TRUNCATION + MYSQL_REPORT_DATA_TRUNCATION, MYSQL_OPT_RECONNECT }; struct st_mysql_options { |