(ctx context.Context, instanceName string, param params.UpdateInstanceParams)
| 400 | } |
| 401 | |
| 402 | func (s *sqlDatabase) UpdateInstance(ctx context.Context, instanceName string, param params.UpdateInstanceParams) (params.Instance, error) { |
| 403 | return s.updateInstance(ctx, instanceName, param, false) |
| 404 | } |
| 405 | |
| 406 | func (s *sqlDatabase) updateInstance(ctx context.Context, instanceName string, param params.UpdateInstanceParams, force bool) (params.Instance, error) { |
| 407 | var rowsAffected int64 |
nothing calls this directly
no test coverage detected