Home > Blockchain >  Cloud SQL minor patch upgrade not working for MySQL
Cloud SQL minor patch upgrade not working for MySQL

Time:07-09

As per enter image description here

enter image description here

CodePudding user response:

This is expected because when you execute gcloud sql instances patch mysqldb this will do nothing about an upgrade because actually you're not setting what to patch.

If you look at the body sent to the API it is almost "empty"

{"name": "mysqldb", "project": "myproject", "settings": {}}

Moreover, in the enter image description here

  • Related