From e04c5972f526805e7c310aa213d1eadbabb45371 Mon Sep 17 00:00:00 2001 From: Jason Fried Date: Tue, 19 Mar 2019 01:02:44 -0700 Subject: [PATCH] Add missing break (#346) Fixes #343 --- MySQLdb/_mysql.c | 1 + 1 file changed, 1 insertion(+) diff --git a/MySQLdb/_mysql.c b/MySQLdb/_mysql.c index 380e2ef..3c84627 100644 --- a/MySQLdb/_mysql.c +++ b/MySQLdb/_mysql.c @@ -1147,6 +1147,7 @@ _mysql_field_to_python( #endif // Call converter with bytes binary = 1; + break; default: // e.g. FIELD_TYPE_DATETIME, etc. // Call converter with unicode string binary = 0;