We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28195b9 commit 9c768aeCopy full SHA for 9c768ae
1 file changed
R/pkg/R/catalog.R
@@ -83,7 +83,7 @@ createExternalTable <- function(x, ...) {
83
cacheTable.default <- function(tableName) {
84
sparkSession <- getSparkSession()
85
catalog <- callJMethod(sparkSession, "catalog")
86
- invisible(callJMethod(catalog, "cacheTable", tableName))
+ invisible(handledCallJMethod(catalog, "cacheTable", tableName))
87
}
88
89
cacheTable <- function(x, ...) {
@@ -112,7 +112,7 @@ cacheTable <- function(x, ...) {
112
uncacheTable.default <- function(tableName) {
113
114
115
- invisible(callJMethod(catalog, "uncacheTable", tableName))
+ invisible(handledCallJMethod(catalog, "uncacheTable", tableName))
116
117
118
uncacheTable <- function(x, ...) {
0 commit comments