Skip to content

Commit

Permalink
Correction for array open given key
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Aug 14, 2023
1 parent 8020f59 commit 796d7e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/TileDBArray.R
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ setMethod("schema", "tiledb_array", function(object, ...) {
}
.array_open <- function(ctxptr, uri, enckey=character()) {
if (length(enckey) > 0) {
arr_xptr <- libtiledb_array_open(ctxptr, uri, "READ", enckey)
arr_xptr <- libtiledb_array_open_with_key(ctxptr, uri, "READ", enckey)
} else {
arr_xptr <- libtiledb_array_open(ctxptr, uri, "READ")
}
Expand Down

0 comments on commit 796d7e4

Please sign in to comment.