| 195 | } |
| 196 | |
| 197 | type AlterTable struct { |
| 198 | AlterPos Pos |
| 199 | StatementEnd Pos |
| 200 | TableIdentifier *TableIdentifier |
| 201 | OnCluster *ClusterClause |
| 202 | AlterExprs []AlterTableClause |
| 203 | } |
| 204 | |
| 205 | func (a *AlterTable) Pos() Pos { |
| 206 | return a.AlterPos |
nothing calls this directly
no outgoing calls
no test coverage detected