vacuum_stmt.go 198 B

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