constraints_set_stmt.go 201 B

1234567891011121314
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type ConstraintsSetStmt struct {
  6. Constraints *ast.List
  7. Deferred bool
  8. }
  9. func (n *ConstraintsSetStmt) Pos() int {
  10. return 0
  11. }