Schema represents show all database schemas statement.
| 28 | |
| 29 | // Schema represents show all database schemas statement. |
| 30 | type Schema struct { |
| 31 | Type SchemaType |
| 32 | // create stmt: value is database json config. |
| 33 | // drop stmt: value is database name. |
| 34 | Value string |
| 35 | } |
| 36 | |
| 37 | // StatementType returns schema query type. |
| 38 | func (q *Schema) StatementType() StatementType { |
nothing calls this directly
no outgoing calls
no test coverage detected