Skip to content

Commit

Permalink
'UNORDERED' is no longer a permitted value (#2575)
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel authored May 16, 2024
1 parent d18f97c commit 729bd3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apis/r/tests/testthat/test-SOMADenseNDArray.R
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ test_that("platform_config is respected", {
cfg$set('tiledb', 'create', 'dense_nd_array_dim_zstd_level', 9)
cfg$set('tiledb', 'create', 'capacity', 8000)
cfg$set('tiledb', 'create', 'tile_order', 'COL_MAJOR')
cfg$set('tiledb', 'create', 'cell_order', 'UNORDERED')
cfg$set('tiledb', 'create', 'cell_order', 'ROW_MAJOR')
cfg$set('tiledb', 'create', 'offsets_filters', list("RLE"))
cfg$set('tiledb', 'create', 'validity_filters', list("RLE", "NONE"))
cfg$set('tiledb', 'create', 'dims', list(
Expand Down Expand Up @@ -130,7 +130,7 @@ test_that("platform_config is respected", {

expect_equal(tiledb::capacity(tsch), 8000)
expect_equal(tiledb::tile_order(tsch), "COL_MAJOR")
expect_equal(tiledb::cell_order(tsch), "UNORDERED")
expect_equal(tiledb::cell_order(tsch), "ROW_MAJOR")

offsets_filters <- tiledb::filter_list(tsch)$offsets
expect_equal(tiledb::nfilters(offsets_filters), 1)
Expand Down
4 changes: 2 additions & 2 deletions apis/r/tests/testthat/test-SOMASparseNDArray.R
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ test_that("platform_config is respected", {
cfg$set('tiledb', 'create', 'sparse_nd_array_dim_zstd_level', 9)
cfg$set('tiledb', 'create', 'capacity', 8000)
cfg$set('tiledb', 'create', 'tile_order', 'COL_MAJOR')
cfg$set('tiledb', 'create', 'cell_order', 'UNORDERED')
cfg$set('tiledb', 'create', 'cell_order', 'ROW_MAJOR')
cfg$set('tiledb', 'create', 'offsets_filters', list("RLE"))
cfg$set('tiledb', 'create', 'validity_filters', list("RLE", "NONE"))
cfg$set('tiledb', 'create', 'dims', list(
Expand Down Expand Up @@ -230,7 +230,7 @@ test_that("platform_config is respected", {

expect_equal(tiledb::capacity(tsch), 8000)
expect_equal(tiledb::tile_order(tsch), "COL_MAJOR")
expect_equal(tiledb::cell_order(tsch), "UNORDERED")
expect_equal(tiledb::cell_order(tsch), "ROW_MAJOR")

offsets_filters <- tiledb::filter_list(tsch)$offsets
expect_equal(tiledb::nfilters(offsets_filters), 1)
Expand Down

0 comments on commit 729bd3f

Please sign in to comment.