Jelajahi Sumber

fix Unknown table 'COLUMN_STATISTICS' error

Olivier Massot 5 tahun lalu
induk
melakukan
9016c41e05
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      clonedb.py

+ 1 - 1
clonedb.py

@@ -317,7 +317,7 @@ class CloningOperation:
 
         try:
             self.from_server.exec_query("SELECT COLUMN_NAME FROM information_schema.COLUMN_STATISTICS;")
-        except pymysql.err.OperationalError:
+        except pymysql.err.MySQLError:
             # fix the occasional 'Unknown table 'COLUMN_STATISTICS' in information_schema' bug
             base_cmd.append("--column-statistics=0")