create_seq_stmt.go 249 B

1234567891011121314151617
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CreateSeqStmt struct {
  6. Sequence *RangeVar
  7. Options *ast.List
  8. OwnerId Oid
  9. ForIdentity bool
  10. IfNotExists bool
  11. }
  12. func (n *CreateSeqStmt) Pos() int {
  13. return 0
  14. }