row_mark_clause.go 184 B

123456789101112
  1. package pg
  2. type RowMarkClause struct {
  3. Rti Index
  4. Strength LockClauseStrength
  5. WaitPolicy LockWaitPolicy
  6. PushedDown bool
  7. }
  8. func (n *RowMarkClause) Pos() int {
  9. return 0
  10. }