SqlCommand is admin command such as "SET", "USE"
| 202 | } |
| 203 | // SqlCommand is admin command such as "SET", "USE" |
| 204 | SqlCommand struct { |
| 205 | kw lex.TokenType // SET or USE |
| 206 | Columns CommandColumns // can have multiple columns in command |
| 207 | Identity string // |
| 208 | Value expr.Node // |
| 209 | } |
| 210 | // SqlCreate SQL CREATE statement |
| 211 | SqlCreate struct { |
| 212 | Raw string // full original raw statement |
nothing calls this directly
no outgoing calls
no test coverage detected