truncate_stmt.go 215 B

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