NewDRefCursor allocates a DRefCursor.
(v DString)
| 258 | |
| 259 | // NewDRefCursor allocates a DRefCursor. |
| 260 | func (a *DatumAlloc) NewDRefCursor(v DString) Datum { |
| 261 | return NewDRefCursorFromDString(a.NewDString(v)) |
| 262 | } |
| 263 | |
| 264 | // NewDBytes allocates a DBytes. |
| 265 | func (a *DatumAlloc) NewDBytes(v DBytes) *DBytes { |
nothing calls this directly
no test coverage detected