You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From the error message I understand that tbl() is doing a select on all columns (*) before slicing only the requested ones. Is this behavior wanted? Of course I don't know the unsupported columns initially and have to do trial and error to find them out but using tbl() seems to be no solution to me for this approach, right?
The text was updated successfully, but these errors were encountered:
Maybe related to #369.
When requesting data from an Oracle DB via
from some tables with unsupported column types
tbl()
does behave different to the approach when usingdbGetQuery()
:gives the following error:
while
works as expected.
From the error message I understand that
tbl()
is doing a select on all columns (*) before slicing only the requested ones. Is this behavior wanted? Of course I don't know the unsupported columns initially and have to do trial and error to find them out but usingtbl()
seems to be no solution to me for this approach, right?The text was updated successfully, but these errors were encountered: