mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Client attributes
This commit is contained in:
@ -1542,6 +1542,9 @@ static int connect_to_db(char *host, char *user,char *passwd)
|
||||
if (opt_default_auth && *opt_default_auth)
|
||||
mysql_options(&mysql_connection, MYSQL_DEFAULT_AUTH, opt_default_auth);
|
||||
|
||||
mysql_options(&mysql_connection, MYSQL_OPT_CONNECT_ATTR_RESET, 0);
|
||||
mysql_options4(&mysql_connection, MYSQL_OPT_CONNECT_ATTR_ADD,
|
||||
"program_name", "mysqldump");
|
||||
mysql= &mysql_connection; /* So we can mysql_close() it properly */
|
||||
if (!mysql_real_connect(&mysql_connection,host,user,passwd,
|
||||
NULL,opt_mysql_port,opt_mysql_unix_port, 0))
|
||||
|
Reference in New Issue
Block a user