MCPcopy Create free account
hub / github.com/araddon/qlbridge / SqlShow

Struct SqlShow

rel/sql.go:179–191  ·  view source on GitHub ↗

SqlShow SQL SHOW Statement

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected