1
0

delete_stmt.go 270 B

1234567891011121314151617
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type DeleteStmt struct {
  6. Relation *RangeVar
  7. UsingClause *ast.List
  8. WhereClause ast.Node
  9. ReturningList *ast.List
  10. WithClause *WithClause
  11. }
  12. func (n *DeleteStmt) Pos() int {
  13. return 0
  14. }