By default when I use dbGetQuery()
from the DBI
package it returns columns of type integer64
as the integer64
class of the bit64
.
I then use dplyr
to try and filter and manipulate my results but come into issues as dplyr
does not support objects of type integer64
.
Is it possible to set dbGetQuery()
to return integer64
columns as class integer
?