【发布时间】:2019-07-12 17:33:51
【问题描述】:
我无法使用控制台中的 MySQL 第二代升级向导将第一代 Google Cloud 实例升级到第二代实例。 在检查配置屏幕期间,我收到 Tables that use the MEMORY storage engine found 错误,因此我无法继续进行,如屏幕截图所示 根据Upgrading a First Generation instance to Second Generation 的文档,我已经使用文档中提到的查询进行了验证。
SELECT table_schema, table_name, table_type
FROM information_schema.tables
WHERE engine = 'MEMORY' AND
table_schema NOT IN
('mysql','information_schema','performance_schema');
但使用如下所示的 MEMORY 存储引擎发现没有表。
【问题讨论】:
标签: google-cloud-platform google-cloud-sql