drop_table_space_stmt.go 146 B

12345678910
  1. package pg
  2. type DropTableSpaceStmt struct {
  3. Tablespacename *string
  4. MissingOk bool
  5. }
  6. func (n *DropTableSpaceStmt) Pos() int {
  7. return 0
  8. }