alter_table_move_all_stmt.go 308 B

1234567891011121314151617
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type AlterTableMoveAllStmt struct {
  6. OrigTablespacename *string
  7. Objtype ObjectType
  8. Roles *ast.List
  9. NewTablespacename *string
  10. Nowait bool
  11. }
  12. func (n *AlterTableMoveAllStmt) Pos() int {
  13. return 0
  14. }