executeCreateExtension creates new extension in the given schema. The caller is responsible for opening and closing the database connection.
(extName, schemaName string)
| 586 | // executeCreateExtension creates new extension in the given schema. |
| 587 | // The caller is responsible for opening and closing the database connection. |
| 588 | func (c *Cluster) executeCreateExtension(extName, schemaName string) error { |
| 589 | return c.execCreateOrAlterExtension(extName, schemaName, createExtensionSQL, |
| 590 | "creating extension", "create extension") |
| 591 | } |
| 592 | |
| 593 | // executeAlterExtension changes the schema of the given extension. |
| 594 | // The caller is responsible for opening and closing the database connection. |
no test coverage detected