File: dbGetRowCount_DBIResultArrow.R

package info (click to toggle)
dbi 1.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,740 kB
  • sloc: makefile: 2
file content (12 lines) | stat: -rw-r--r-- 260 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#' @rdname hidden_aliases
#' @usage NULL
dbGetRowCount_DBIResultArrow <- function(res, ...) {
  dbGetRowCount(res@result, ...)
}
#' @rdname hidden_aliases
#' @export
setMethod(
  "dbGetRowCount",
  signature("DBIResultArrow"),
  dbGetRowCount_DBIResultArrow
)