alter_table_space_options_stmt.go 247 B

123456789101112131415
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type AlterTableSpaceOptionsStmt struct {
  6. Tablespacename *string
  7. Options *ast.List
  8. IsReset bool
  9. }
  10. func (n *AlterTableSpaceOptionsStmt) Pos() int {
  11. return 0
  12. }