Skip to content

Commit 1579cfc

Browse files
authored
Update back compat arrays after delta filter addition. (#4623)
This switches the tests to the new versions of the backwards compatibility arrays for 2.16, 2.17 and 2.18 that include the delta filter. Older branches will still use the old arrays... Once we get a few releases done, we should remove the old arrays. --- TYPE: NO_HISTORY DESC: Update back compat arrays after delta filter addition.
1 parent 45361ef commit 1579cfc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-ubuntu20.04-backwards-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- ubuntu-20.04
6060
# Note: v2_1_0 arrays were never created so its currently skipped
6161
# Note: This matrix is used to set the value of TILEDB_COMPATIBILITY_VERSION
62-
tiledb_version: ["v1_4_0", "v1_5_0", "v1_6_0", "v1_7_0", "v2_0_0", "v2_2_0", "v2_2_3", "v2_3_0", "v2_4_0", "v2_5_0", "v2_6_0", "v2_7_0", "v2_8_3", "v2_9_1", "v2_10_0", "v2_11_0", "v2_12_0", "v2_13_0", "v2_14_0", "v2_15_0", "v2_16_0", "v2_17_3", "v2_18_1"]
62+
tiledb_version: ["v1_4_0", "v1_5_0", "v1_6_0", "v1_7_0", "v2_0_0", "v2_2_0", "v2_2_3", "v2_3_0", "v2_4_0", "v2_5_0", "v2_6_0", "v2_7_0", "v2_8_3", "v2_9_1", "v2_10_0", "v2_11_0", "v2_12_3", "v2_13_2", "v2_14_0", "v2_15_0", "v2_16_3", "v2_17_5", "v2_18_3"]
6363
timeout-minutes: 30
6464
name: ${{ matrix.tiledb_version }}
6565
steps:

tiledb/sm/array/array.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,7 @@ Status Array::reopen(uint64_t timestamp_start, uint64_t timestamp_end) {
826826
array_uri_,
827827
key->encryption_type(),
828828
key->key().data(),
829-
key->key().size(),
829+
static_cast<uint32_t>(key->key().size()),
830830
this->timestamp_start(),
831831
timestamp_end_opened_at(),
832832
is_remote());

0 commit comments

Comments
 (0)