on_conflict_expr.go 361 B

1234567891011121314151617181920
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type OnConflictExpr struct {
  6. Action OnConflictAction
  7. ArbiterElems *ast.List
  8. ArbiterWhere ast.Node
  9. Constraint Oid
  10. OnConflictSet *ast.List
  11. OnConflictWhere ast.Node
  12. ExclRelIndex int
  13. ExclRelTlist *ast.List
  14. }
  15. func (n *OnConflictExpr) Pos() int {
  16. return 0
  17. }