param_extern_data.go 149 B

123456789101112
  1. package pg
  2. type ParamExternData struct {
  3. Value Datum
  4. Isnull bool
  5. Pflags uint16
  6. Ptype Oid
  7. }
  8. func (n *ParamExternData) Pos() int {
  9. return 0
  10. }