executeAlterExtension changes the schema of the given extension. The caller is responsible for opening and closing the database connection.
(extName, schemaName string)
| 593 | // executeAlterExtension changes the schema of the given extension. |
| 594 | // The caller is responsible for opening and closing the database connection. |
| 595 | func (c *Cluster) executeAlterExtension(extName, schemaName string) error { |
| 596 | return c.execCreateOrAlterExtension(extName, schemaName, alterExtensionSQL, |
| 597 | "changing schema for extension", "alter extension schema") |
| 598 | } |
| 599 | |
| 600 | func (c *Cluster) execCreateOrAlterExtension(extName, schemaName, statement, doing, operation string) error { |
| 601 |
no test coverage detected