From 2fd9407b9530e2a1dc941c59ac01da6661c8c3bc Mon Sep 17 00:00:00 2001 From: Nick Vyzas Date: Thu, 10 May 2018 17:24:53 +0300 Subject: [PATCH] Added default_schema to checksum criteria 2.0.0 --- lib/MySQL_Authentication.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/MySQL_Authentication.cpp b/lib/MySQL_Authentication.cpp index ff25f91b9..d1d8ddec5 100644 --- a/lib/MySQL_Authentication.cpp +++ b/lib/MySQL_Authentication.cpp @@ -499,6 +499,7 @@ uint64_t MySQL_Authentication::_get_runtime_checksum(enum cred_username_type use myhash.Update(&ad->max_connections,sizeof(ad->max_connections)); myhash.Update(ad->username,strlen(ad->username)); myhash.Update(ad->password,strlen(ad->password)); + myhash.Update(ad->default_schema,strlen(ad->default_schema)); } it++; }