From 7e1034a74096c407e2be51e1d222db013abcb13f Mon Sep 17 00:00:00 2001 From: Markus Makela Date: Mon, 5 Oct 2015 10:14:21 +0300 Subject: [PATCH] All conflicts are printed when processing databases. --- server/modules/routing/schemarouter/schemarouter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/modules/routing/schemarouter/schemarouter.c b/server/modules/routing/schemarouter/schemarouter.c index df94d1490..8f155892d 100644 --- a/server/modules/routing/schemarouter/schemarouter.c +++ b/server/modules/routing/schemarouter/schemarouter.c @@ -366,7 +366,7 @@ showdb_response_t parse_showdb_response(ROUTER_CLIENT_SES* rses, backend_ref_t* ptr += gw_mysql_get_byte3(ptr) + 4; } - while (!duplicate_found && ptr < (unsigned char*) buf->end && !PTR_IS_EOF(ptr)) + while (ptr < (unsigned char*) buf->end && !PTR_IS_EOF(ptr)) { int payloadlen = gw_mysql_get_byte3(ptr); int packetlen = payloadlen + 4;