(schema)
| 22 | } |
| 23 | |
| 24 | createSchema(schema) { |
| 25 | return [ |
| 26 | 'CREATE SCHEMA', |
| 27 | this.quoteIdentifier(schema), |
| 28 | ';' |
| 29 | ].join(' '); |
| 30 | } |
| 31 | |
| 32 | dropSchema(schema) { |
| 33 | // DROP SCHEMA Can't drop schema if it is not empty. |
nothing calls this directly
no test coverage detected