Statement represents a statement.
| 83 | |
| 84 | // Statement represents a statement. |
| 85 | type Statement interface { |
| 86 | iStatement() |
| 87 | SQLNode |
| 88 | } |
| 89 | |
| 90 | func (*Union) iStatement() {} |
| 91 | func (*Select) iStatement() {} |
nothing calls this directly
no outgoing calls
no test coverage detected