dbStatistics {RAthena} | R Documentation |
Show AWS Athena Statistics
Description
Returns AWS Athena Statistics from execute queries dbSendQuery
Usage
dbStatistics(res, ...)
## S4 method for signature 'AthenaResult'
dbStatistics(res, ...)
Arguments
res |
An object inheriting from DBIResult. |
... |
Other arguments passed on to methods. |
Value
dbStatistics()
returns list containing Athena Statistics return from boto3
.
Examples
## Not run:
# Note:
# - Require AWS Account to run below example.
# - Different connection methods can be used please see `RAthena::dbConnect` documnentation
library(DBI)
library(RAthena)
# Demo connection to Athena using profile name
con <- dbConnect(RAthena::athena())
res <- dbSendQuery(con, "show databases")
dbStatistics(res)
# Clean up
dbClearResult(res)
## End(Not run)
[Package RAthena version 2.6.1 Index]