alter_op_family_stmt.go 247 B

12345678910111213141516
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type AlterOpFamilyStmt struct {
  6. Opfamilyname *ast.List
  7. Amname *string
  8. IsDrop bool
  9. Items *ast.List
  10. }
  11. func (n *AlterOpFamilyStmt) Pos() int {
  12. return 0
  13. }