reindex_stmt.go 167 B

123456789101112
  1. package pg
  2. type ReindexStmt struct {
  3. Kind ReindexObjectType
  4. Relation *RangeVar
  5. Name *string
  6. Options int
  7. }
  8. func (n *ReindexStmt) Pos() int {
  9. return 0
  10. }