SqlShow SQL SHOW Statement
| 177 | } |
| 178 | // SqlShow SQL SHOW Statement |
| 179 | SqlShow struct { |
| 180 | Raw string // full raw statement |
| 181 | Db string // Database/Schema name |
| 182 | Full bool // SHOW FULL TABLE FROM |
| 183 | Scope string // {FULL, GLOBAL, SESSION} |
| 184 | ShowType string // object type, [tables, columns, etc] |
| 185 | From string // `table` or `schema`.`table` |
| 186 | Identity string // `table` or `schema`.`table` |
| 187 | Create bool |
| 188 | CreateWhat string |
| 189 | Where expr.Node |
| 190 | Like expr.Node |
| 191 | } |
| 192 | // SQL Describe statement |
| 193 | SqlDescribe struct { |
| 194 | Raw string // full original raw statement |
nothing calls this directly
no outgoing calls
no test coverage detected