cluster_stmt.go 143 B

1234567891011
  1. package pg
  2. type ClusterStmt struct {
  3. Relation *RangeVar
  4. Indexname *string
  5. Verbose bool
  6. }
  7. func (n *ClusterStmt) Pos() int {
  8. return 0
  9. }