diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2016-01-17 21:21:39 +0100 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2016-02-02 14:35:10 +0100 |
commit | d4b3a199acb0ddcdedff441ae664b0a2cf2fe8d2 (patch) | |
tree | ab3df233d02318aece37de6f0f9c42e28bccef53 /sql-common | |
parent | 36eccebd6f8116bd8940c03701c453db71aecb69 (diff) | |
download | mariadb-git-d4b3a199acb0ddcdedff441ae664b0a2cf2fe8d2.tar.gz |
MDEV-9117: Client Server capability negotiation for MariaDB specific functionality
New capability flags space.
Removed old progress flag, added new one.
Diffstat (limited to 'sql-common')
-rw-r--r-- | sql-common/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql-common/client.c b/sql-common/client.c index 36a644cb90f..41a262ad448 100644 --- a/sql-common/client.c +++ b/sql-common/client.c @@ -601,7 +601,7 @@ restart: uint last_errno=uint2korr(pos); if (last_errno == 65535 && - (mysql->server_capabilities & CLIENT_PROGRESS)) + (mysql->server_capabilities & CLIENT_PROGRESS_OBSOLETE)) { if (cli_report_progress(mysql, pos+2, (uint) (len-3))) { |