NewDRefCursorFromDString is a helper routine to create a *DRefCursor (implemented as a *DOidWrapper) initialized from an existing *DString.
(d *DString)
| 6002 | // NewDRefCursorFromDString is a helper routine to create a *DRefCursor |
| 6003 | // (implemented as a *DOidWrapper) initialized from an existing *DString. |
| 6004 | func NewDRefCursorFromDString(d *DString) Datum { |
| 6005 | return wrapWithOid(d, oid.T_refcursor) |
| 6006 | } |
| 6007 | |
| 6008 | // NewDRefCursor is a helper routine to create a *DRefCursor (implemented as a |
| 6009 | // *DOidWrapper) initialized from a string. |
no test coverage detected
searching dependent graphs…