fetch_stmt.go 165 B

123456789101112
  1. package pg
  2. type FetchStmt struct {
  3. Direction FetchDirection
  4. HowMany int64
  5. Portalname *string
  6. Ismove bool
  7. }
  8. func (n *FetchStmt) Pos() int {
  9. return 0
  10. }