TileDB-R icon indicating copy to clipboard operation
TileDB-R copied to clipboard

R interface to TileDB: The Modern Database

Results 22 TileDB-R issues
Sort by recently updated
recently updated
newest added

Another round of minor documentation fixes. I've committed changes by file to make review easier.

The help page of [`tiledb_array_schema()`](https://tiledb-inc.github.io/TileDB-R/reference/tiledb_array_schema.html) is not very informative on how to map an enumeration (factors) list to enum attributes. We can assume that passing a named list of enums...

`tiledb_query_import_buffer()` works for `nanosecond` resolution but not for `Date` and `POSIXct` objects. ``` r library(tiledb) uri

### Context In `R` the TileDB arrays are represented with S4 classes that have slots (OOP). Creating a tiledb array object using `tiledb_array()` one can set timestamps via `timestamp_start`, `timestamp_end`...

`array_vacuum()` has optional arguments to set time stamps but these affect consolidation time stamps. See source code further below. Note that `sm.vacuum.timestamp_start` and `sm.vacuum.timestamp_end` are not listed in Academy's [consolidation-and-vacuuming](https://documentation.cloud.tiledb.com/academy/structure/arrays/tutorials/basics/configuration/#consolidation-and-vacuuming)...

I am trying to install/compile on Asahi Ubuntu on a Macbook M2. Currently gives error. Any workaround? `ERROR: configure: error: currently unsupported system Linux on aarch64 `

Passing a zero character as metadata is handled differently by array and group. See full reprex at the bottom. ```r # metadata for array and group key Error: Not compatible...

While reading an array that has been evolved with a new nullable (NAs) attribute, it will segfault when duplicate values are allowed. ``` r library(tiledb) # 0.32.0.5 # helper evolved_df...

The configure script decides to download a pre-built binary, but that is linked against glibc not musl, and loading fails with ``` ** testing if installed package can be loaded...

The TileDB-R docs originally suggested that `tiledb_query_condition_combine()` supported the `NOT` operator, but that was wrong. This PR adds a wrapper to negate a query condition.