Prof Brian Ripley <[EMAIL PROTECTED]> writes:
> Those functions are messy (StringFromRaw was always private), and are
> really just part of coerceVector and asInteger etc (which are the public
> interface).
>
> What RdbiPgSql does is not currently correct. It has
>
> PROTECT(rowNames = allocV
Those functions are messy (StringFromRaw was always private), and are
really just part of coerceVector and asInteger etc (which are the public
interface).
What RdbiPgSql does is not currently correct. It has
PROTECT(rowNames = allocVector(STRSXP, rows));
for (row = 0; row < rows; ++row)
Hi,
In commit 38652, StringFromInteger (among others) was removed from R's
public API. I've just come across a Bioconductor package, RdbiPgSql,
that uses this function.
Is there an alternative that is in the public API? If not, it would
be nice to be able to reuse these sorts of helper function