| 1 | package ast |
| 2 | |
| 3 | type CreateStatsStmt struct { |
| 4 | Defnames *List |
| 5 | StatTypes *List |
| 6 | Exprs *List |
| 7 | Relations *List |
| 8 | IfNotExists bool |
| 9 | } |
| 10 | |
| 11 | func (n *CreateStatsStmt) Pos() int { |
| 12 | return 0 |
nothing calls this directly
no outgoing calls
no test coverage detected