NewDRefCursor is a helper routine to create a *DRefCursor (implemented as a *DOidWrapper) initialized from a string.
(d string)
| 6008 | // NewDRefCursor is a helper routine to create a *DRefCursor (implemented as a |
| 6009 | // *DOidWrapper) initialized from a string. |
| 6010 | func NewDRefCursor(d string) Datum { |
| 6011 | return NewDRefCursorFromDString(NewDString(d)) |
| 6012 | } |
| 6013 | |
| 6014 | // NewDIntVectorFromDArray is a helper routine to create a new *DArray, |
| 6015 | // initialized from an existing *DArray, with the special oid for IntVector. |
no test coverage detected
searching dependent graphs…