Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tests fail on PowerPC (Big-endian): on 32-bit totally broken, on 64-bit some #4096

Open
barracuda156 opened this issue May 22, 2023 · 15 comments
Assignees

Comments

@barracuda156
Copy link
Contributor

barracuda156 commented May 22, 2023

After spending half of the day to fix the build, which finally worked, turned out that most of tests fail on the same spot:

/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.15.2/test/support/src/helpers.cc:134: FAILED:
  REQUIRE( rc == (0) )
with expansion:
  -1 == 0
with message:
  [TileDB::Array] Error: [TileDB::StorageManager] Error: FilterCreate:
  Deserialization error; not enough data in buffer for metadata

Any idea what goes wrong and how to fix it? This on Darwin PPC.

P. S. Usual suspects are endianness, 32-bitness and 4-byte bool.

tiledb_test_10.6_ppc.log

@barracuda156
Copy link
Contributor Author

So this fails:

shared_ptr<tiledb::sm::Filter> tiledb::sm::FilterCreate::deserialize(
    Deserializer& deserializer,
    const EncryptionKey& encryption_key,
    const uint32_t version) {
  Status st;
  uint8_t type = deserializer.read<uint8_t>();
  FilterType filtertype = static_cast<FilterType>(type);
  uint32_t filter_metadata_len = deserializer.read<uint32_t>();
  if (deserializer.size() < filter_metadata_len) {
    throw StatusException(
        "FilterCreate",
        "Deserialization error; not enough data in buffer for metadata");
  }

But why?

@barracuda156
Copy link
Contributor Author

@Shelnutt2 @joe-maley Could someone take a look please? Presumably 32-bit is kinda supported: #1737
The code has references to endianness too, so there should be no major obstacles to fixing PPC.

@barracuda156
Copy link
Contributor Author

Tests on 10.6.8 x86_64 pass fine, just in case, so it is not an outdated macOS to blame (or my build):

1: All tests passed (25586067 assertions in 1016 test cases)
1: 
1/2 Test #1: tiledb_unit ......................   Passed  1924.12 sec
test 2
    Start 2: test_ci_asserts

2: Test command: /opt/x86_64/var/macports/build/_opt_x86_64_SnowLeopardPorts_databases_tiledb/tiledb/work/build/tiledb/test/ci/test_assert
2: Working Directory: /opt/x86_64/var/macports/build/_opt_x86_64_SnowLeopardPorts_databases_tiledb/tiledb/work/build/tiledb/test/ci
2: Test timeout computed to be: 10000000
2: Assert did not exit!
2: Randomness seeded to: 857524962
2: retval is 0 (0x0) from /opt/x86_64/var/macports/build/_opt_x86_64_SnowLeopardPorts_databases_tiledb/tiledb/work/build/tiledb/test/ci/try_assert
2: ===============================================================================
2: All tests passed (1 assertion in 1 test case)
2: 
2/2 Test #2: test_ci_asserts ..................   Passed    0.04 sec

100% tests passed, 0 tests failed out of 2

Total Test time (real) = 1924.17 sec

@Shelnutt2
Copy link
Member

Shelnutt2 commented May 22, 2023

Thanks for posting this @barracuda156. To confirm you are working on powerpc for macos with gcc 12?

@barracuda156
Copy link
Contributor Author

barracuda156 commented May 22, 2023

Thanks for posting this @barracuda156. To confirm you are working on powerpc for macos with gcc 12?

Thank you for responding! Yes.
(I got several versions of GCC, if cross-checking will be needed.)

P. S. I ran build and tests on 10.6 x86_64 also with gcc12.

@barracuda156
Copy link
Contributor Author

@Shelnutt2 I wanted to run tests on 10.6 for i386 to see how 32-bit Intel behaves, but against libc++ even the build fails:

[100%] Linking CXX executable tiledb_unit
Undefined symbols for architecture i386:
  "Catch::StringMaker<std::byte, void>::convert(std::byte)", referenced from:
      Catch::BinaryExpr<std::byte&, std::byte const&>::streamReconstructedExpression(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const in unit-backwards_compat.cc.o
  "Catch::StringMaker<std::__1::basic_string_view<char, std::__1::char_traits<char> >, void>::convert(std::__1::basic_string_view<char, std::__1::char_traits<char> >)", referenced from:
      Catch::BinaryExpr<std::__1::basic_string_view<char, std::__1::char_traits<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&>::streamReconstructedExpression(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const in unit-SubarrayPartitioner-sparse.cc.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
gmake[7]: *** [test/CMakeFiles/tiledb_unit.dir/build.make:2528: test/tiledb_unit] Error 1
gmake[6]: *** [CMakeFiles/Makefile2:10054: test/CMakeFiles/tiledb_unit.dir/all] Error 2
gmake[5]: *** [CMakeFiles/Makefile2:10087: test/CMakeFiles/check.dir/rule] Error 2

I do not have readily available setup to build for i386 against libstdc++, though it is doable in principle.

@barracuda156
Copy link
Contributor Author

This could be relevant, perhaps:

:info:build [ 45%] Building CXX object tiledb/CMakeFiles/TILEDB_CORE_OBJECTS.dir/sm/fragment/fragment_metadata.cc.o
:info:build cd /opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/build/tiledb/tiledb && /opt/local/bin/g++-mp-12 -DSPDLOG_COMPILED_LIB -DTILEDB_CORE_OBJECTS_EXPORTS -DTILEDB_STATS -D_FILE_OFFSET_BITS=64 -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.15.2/tiledb/.. -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.15.2/tiledb/../tiledb/sm/c_api -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.15.2/tiledb/../external/include -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.15.2/tiledb/../external/include/bitshuffle -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.15.2/tiledb/../external/include/blosc -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.15.2/external/blosc/include -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/build/tiledb/tiledb/.. -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.15.2/tiledb/../tiledb/sm/cpp_api -I/opt/local/include -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/build/externals/install/include -I/opt/local/libexec/openssl3/include -I/opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/build/tiledb/tiledb -pipe -I/opt/local/libexec/openssl3/include -Os -DNDEBUG -I/opt/local/libexec/openssl3/include -isystem/opt/local/include/LegacySupport -isystem/opt/local/include -D_GLIBCXX_USE_CXX11_ABI=0 -std=c++17 -arch ppc -isysroot /Developer/SDKs/MacOSX10.6.sdk -mmacosx-version-min=10.6 -fPIC -fvisibility=hidden -Wall -Wextra -Wno-literal-suffix -MD -MT tiledb/CMakeFiles/TILEDB_CORE_OBJECTS.dir/sm/fragment/fragment_metadata.cc.o -MF CMakeFiles/TILEDB_CORE_OBJECTS.dir/sm/fragment/fragment_metadata.cc.o.d -o CMakeFiles/TILEDB_CORE_OBJECTS.dir/sm/fragment/fragment_metadata.cc.o -c /opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.15.2/tiledb/sm/fragment/fragment_metadata.cc
:info:build /opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.15.2/tiledb/sm/fragment/fragment_metadata.cc: In member function 'T tiledb::sm::FragmentMetadata::get_tile_min_as(const std::string&, uint64_t) [with T = std::basic_string_view<char>; std::string = std::basic_string<char>; uint64_t = long long unsigned int]':
:info:build /opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.15.2/tiledb/sm/fragment/fragment_metadata.cc:1721:18: warning: narrowing conversion of 'size' from 'long long unsigned int' to 'std::basic_string_view<char>::size_type' {aka 'long unsigned int'} [-Wnarrowing]
:info:build  1721 |     return {min, size};
:info:build       |                  ^~~~
:info:build /opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.15.2/tiledb/sm/fragment/fragment_metadata.cc:1725:38: warning: narrowing conversion of 'size' from 'long long unsigned int' to 'std::basic_string_view<char>::size_type' {aka 'long unsigned int'} [-Wnarrowing]
:info:build  1725 |     return {static_cast<char*>(min), size};
:info:build       |                                      ^~~~
:info:build /opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.15.2/tiledb/sm/fragment/fragment_metadata.cc: In member function 'T tiledb::sm::FragmentMetadata::get_tile_max_as(const std::string&, uint64_t) [with T = std::basic_string_view<char>; std::string = std::basic_string<char>; uint64_t = long long unsigned int]':
:info:build /opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.15.2/tiledb/sm/fragment/fragment_metadata.cc:1794:18: warning: narrowing conversion of 'size' from 'long long unsigned int' to 'std::basic_string_view<char>::size_type' {aka 'long unsigned int'} [-Wnarrowing]
:info:build  1794 |     return {max, size};
:info:build       |                  ^~~~
:info:build /opt/local/var/macports/build/_opt_PPCSnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.15.2/tiledb/sm/fragment/fragment_metadata.cc:1798:38: warning: narrowing conversion of 'size' from 'long long unsigned int' to 'std::basic_string_view<char>::size_type' {aka 'long unsigned int'} [-Wnarrowing]
:info:build  1798 |     return {static_cast<char*>(max), size};
:info:build       |                                      ^~~~

@barracuda156
Copy link
Contributor Author

@Shelnutt2 Have you had a chance to take a look at this?

@barracuda156
Copy link
Contributor Author

@Shelnutt2 I have tested tiledb on ppc64 now, and while several test cases still fail, results are much better:

1: ===============================================================================
1: test cases:     300 |     293 passed | 7 failed
1: assertions: 3166930 | 3166922 passed | 8 failed
1: 
1/2 Test #1: tiledb_unit ......................***Exception: SegFault 70.77 sec

So it looks like for the large part the issue is bitness (or maybe size of bool too), though somewhere also endianness.

@barracuda156
Copy link
Contributor Author

Judging by this commit, it is broken now on Linux for 32-bit too (any arch): https://git.alpinelinux.org/aports/commit/?id=19ea0281c8c50d67d634d3559da0bf27bca04115

@barracuda156 barracuda156 changed the title Please help fix tests on Big endian target: helpers.cc:134: FAILED: REQUIRE( rc == (0) ) with expansion: -1 == 0 Tests fail on PowerPC (Big-endian): on 32-bit totally broken, on 64-bit some Aug 1, 2023
@barracuda156
Copy link
Contributor Author

@sunpoet Could you please comment on the status on FreeBSD? I know it supports ppc (32-bit) at least in FreeBSD 13 and earlier. Does the test suite pass or everything is as broken as on macOS?

@barracuda156
Copy link
Contributor Author

@eddelbuettel Just in case, do you happen to still have a Solaris Big-endian system? It would be nice to have this working, but unfortunately it is not clear to me what exactly is broken.

I am pretty sure the problem is not specific to macOS (i.e. neither SDK-specific nor PowerPC-specific, at least for the most part). There may be an additional complication on ppc due to 4-byte bool size, but I do not think that is a cause of the failures.
If we could have endianness fixed and 32-bit platforms working (any arch on any Unix-like OS), which in itself gonna benefit Linux and *BSD systems, I could fix whatever is macOS-specific.

@eddelbuettel
Copy link
Member

@barracuda156 The Solaris system R used was at Oxford University but is not longer up (as you may know) as it was IIRC years past end-of-live support. I have no access to another one.

@barracuda156
Copy link
Contributor Author

@eddelbuettel Got it, thank you.

Well, maybe somebody on Debian or FreeBSD got powerpc or sparc hardware…

@barracuda156
Copy link
Contributor Author

Tests results on i386 are pretty bad too:

[100%] Built target tests
UpdateCTestConfiguration  from :/opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/build/tiledb/test/DartConfiguration.tcl
UpdateCTestConfiguration  from :/opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/build/tiledb/test/DartConfiguration.tcl
Test project /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/build/tiledb/test
Constructing a list of tests
Done constructing a list of tests
Updating test list for fixtures
Added 0 tests to meet fixture requirements
Checking test dependency graph...
Checking test dependency graph end
test 1
    Start 1: tiledb_unit

1: Test command: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/build/tiledb/test/tiledb_unit "--durations=yes"
1: Working Directory: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test
1: Test timeout computed to be: 10000000
1: Randomness seeded to: 2228423440
1: 0.210 s: Write to increasing attributes with fixed length: valid - uint8_t, Datatype::UINT8
1: 0.070 s: Write to increasing attributes with fixed length: valid - int8_t, Datatype::INT8
1: 0.071 s: Write to increasing attributes with fixed length: valid - uint16_t, Datatype::UINT16
1: 0.070 s: Write to increasing attributes with fixed length: valid - int16_t, Datatype::INT16
1: 0.069 s: Write to increasing attributes with fixed length: valid - uint32_t, Datatype::UINT32
1: 0.068 s: Write to increasing attributes with fixed length: valid - int32_t, Datatype::INT32
1: 0.070 s: Write to increasing attributes with fixed length: valid - uint64_t, Datatype::UINT64
1: 0.069 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::INT64
1: 0.069 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_YEAR
1: 0.069 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_MONTH
1: 0.068 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_WEEK
1: 0.079 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_DAY
1: 0.068 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_HR
1: 0.070 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_MIN
1: 0.069 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_SEC
1: 0.067 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_MS
1: 0.072 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_US
1: 0.069 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_NS
1: 0.088 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_PS
1: 0.069 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_FS
1: 0.069 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_AS
1: 0.067 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::TIME_HR
1: 0.069 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::TIME_MIN
1: 0.068 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::TIME_SEC
1: 0.069 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::TIME_MS
1: 0.067 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::TIME_US
1: 0.068 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::TIME_NS
1: 0.068 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::TIME_PS
1: 0.067 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::TIME_FS
1: 0.067 s: Write to increasing attributes with fixed length: valid - int64_t, Datatype::TIME_AS
1: 0.068 s: Write to increasing attributes with fixed length: valid - float, Datatype::FLOAT32
1: 0.070 s: Write to increasing attributes with fixed length: valid - double, Datatype::FLOAT64
1: 0.068 s: Write to decreasing attributes with fixed length: valid - uint8_t, Datatype::UINT8
1: 0.067 s: Write to decreasing attributes with fixed length: valid - int8_t, Datatype::INT8
1: 0.103 s: Write to decreasing attributes with fixed length: valid - uint16_t, Datatype::UINT16
1: 0.077 s: Write to decreasing attributes with fixed length: valid - int16_t, Datatype::INT16
1: 0.070 s: Write to decreasing attributes with fixed length: valid - uint32_t, Datatype::UINT32
1: 0.067 s: Write to decreasing attributes with fixed length: valid - int32_t, Datatype::INT32
1: 0.069 s: Write to decreasing attributes with fixed length: valid - uint64_t, Datatype::UINT64
1: 0.068 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::INT64
1: 0.069 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_YEAR
1: 0.068 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_MONTH
1: 0.068 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_WEEK
1: 0.068 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_DAY
1: 0.068 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_HR
1: 0.069 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_MIN
1: 0.069 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_SEC
1: 0.070 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_MS
1: 0.069 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_US
1: 0.067 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_NS
1: 0.068 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_PS
1: 0.068 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_FS
1: 0.068 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::DATETIME_AS
1: 0.068 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::TIME_HR
1: 0.067 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::TIME_MIN
1: 0.067 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::TIME_SEC
1: 0.067 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::TIME_MS
1: 0.070 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::TIME_US
1: 0.067 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::TIME_NS
1: 0.071 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::TIME_PS
1: 0.068 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::TIME_FS
1: 0.114 s: Write to decreasing attributes with fixed length: valid - int64_t, Datatype::TIME_AS
1: 0.087 s: Write to decreasing attributes with fixed length: valid - float, Datatype::FLOAT32
1: 0.068 s: Write to decreasing attributes with fixed length: valid - double, Datatype::FLOAT64
1: [2024-02-09 20:02:32.271] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.164 s: Write to increasing attributes with fixed length: Invalid order - uint8_t, Datatype::UINT8
1: [2024-02-09 20:02:32.346] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.074 s: Write to increasing attributes with fixed length: Invalid order - int8_t, Datatype::INT8
1: [2024-02-09 20:02:32.419] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.072 s: Write to increasing attributes with fixed length: Invalid order - uint16_t, Datatype::UINT16
1: [2024-02-09 20:02:32.492] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to increasing attributes with fixed length: Invalid order - int16_t, Datatype::INT16
1: [2024-02-09 20:02:32.567] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.074 s: Write to increasing attributes with fixed length: Invalid order - uint32_t, Datatype::UINT32
1: [2024-02-09 20:02:32.639] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to increasing attributes with fixed length: Invalid order - int32_t, Datatype::INT32
1: [2024-02-09 20:02:32.712] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.072 s: Write to increasing attributes with fixed length: Invalid order - uint64_t, Datatype::UINT64
1: [2024-02-09 20:02:32.785] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::INT64
1: [2024-02-09 20:02:32.858] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.072 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_YEAR
1: [2024-02-09 20:02:32.931] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_MONTH
1: [2024-02-09 20:02:33.004] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_WEEK
1: [2024-02-09 20:02:33.081] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.085 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_DAY
1: [2024-02-09 20:02:33.187] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.100 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_HR
1: [2024-02-09 20:02:33.261] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.072 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_MIN
1: [2024-02-09 20:02:33.336] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.075 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_SEC
1: [2024-02-09 20:02:33.410] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.074 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_MS
1: [2024-02-09 20:02:33.484] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.074 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_US
1: [2024-02-09 20:02:33.557] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_NS
1: [2024-02-09 20:02:33.630] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_PS
1: [2024-02-09 20:02:33.703] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_FS
1: [2024-02-09 20:02:33.776] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.074 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_AS
1: [2024-02-09 20:02:33.850] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.074 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_HR
1: [2024-02-09 20:02:33.924] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_MIN
1: [2024-02-09 20:02:33.998] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.075 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_SEC
1: [2024-02-09 20:02:34.070] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.072 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_MS
1: [2024-02-09 20:02:34.145] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.075 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_US
1: [2024-02-09 20:02:34.221] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.075 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_NS
1: [2024-02-09 20:02:34.292] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.072 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_PS
1: [2024-02-09 20:02:34.364] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.071 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_FS
1: [2024-02-09 20:02:34.436] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.072 s: Write to increasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_AS
1: [2024-02-09 20:02:34.509] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to increasing attributes with fixed length: Invalid order - float, Datatype::FLOAT32
1: [2024-02-09 20:02:34.581] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.071 s: Write to increasing attributes with fixed length: Invalid order - double, Datatype::FLOAT64
1: [2024-02-09 20:02:34.654] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to decreasing attributes with fixed length: Invalid order - uint8_t, Datatype::UINT8
1: [2024-02-09 20:02:34.725] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.071 s: Write to decreasing attributes with fixed length: Invalid order - int8_t, Datatype::INT8
1: [2024-02-09 20:02:34.801] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.077 s: Write to decreasing attributes with fixed length: Invalid order - uint16_t, Datatype::UINT16
1: [2024-02-09 20:02:34.874] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.072 s: Write to decreasing attributes with fixed length: Invalid order - int16_t, Datatype::INT16
1: [2024-02-09 20:02:34.947] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to decreasing attributes with fixed length: Invalid order - uint32_t, Datatype::UINT32
1: [2024-02-09 20:02:35.027] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.081 s: Write to decreasing attributes with fixed length: Invalid order - int32_t, Datatype::INT32
1: [2024-02-09 20:02:35.100] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to decreasing attributes with fixed length: Invalid order - uint64_t, Datatype::UINT64
1: [2024-02-09 20:02:35.173] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::INT64
1: [2024-02-09 20:02:35.247] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_YEAR
1: [2024-02-09 20:02:35.320] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_MONTH
1: [2024-02-09 20:02:35.392] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_WEEK
1: [2024-02-09 20:02:35.467] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.074 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_DAY
1: [2024-02-09 20:02:35.540] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.074 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_HR
1: [2024-02-09 20:02:35.614] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_MIN
1: [2024-02-09 20:02:35.688] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.074 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_SEC
1: [2024-02-09 20:02:35.761] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.074 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_MS
1: [2024-02-09 20:02:35.836] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.074 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_US
1: [2024-02-09 20:02:35.908] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.072 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_NS
1: [2024-02-09 20:02:35.981] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_PS
1: [2024-02-09 20:02:36.055] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.073 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_FS
1: [2024-02-09 20:02:36.126] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.072 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::DATETIME_AS
1: [2024-02-09 20:02:36.201] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.085 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_HR
1: [2024-02-09 20:02:36.324] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.141 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_MIN
1: [2024-02-09 20:02:36.483] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.136 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_SEC
1: [2024-02-09 20:02:36.590] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.100 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_MS
1: [2024-02-09 20:02:36.665] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.075 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_US
1: [2024-02-09 20:02:36.741] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.078 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_NS
1: [2024-02-09 20:02:36.820] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.078 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_PS
1: [2024-02-09 20:02:36.896] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.077 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_FS
1: [2024-02-09 20:02:36.973] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.076 s: Write to decreasing attributes with fixed length: Invalid order - int64_t, Datatype::TIME_AS
1: [2024-02-09 20:02:37.049] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.078 s: Write to decreasing attributes with fixed length: Invalid order - float, Datatype::FLOAT32
1: [2024-02-09 20:02:37.127] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.076 s: Write to decreasing attributes with fixed length: Invalid order - double, Datatype::FLOAT64
1: 0.097 s: Write to increasing attributes with fixed length: valid
1: 0.084 s: Write to decreasing attributes with fixed length: valid
1: [2024-02-09 20:02:37.386] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.080 s: Write to increasing attributes with variable length: Invalid order
1: [2024-02-09 20:02:37.465] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: The data for attribute 'a' is not in the expected order.
1: 0.080 s: Write to decreasing attributes with variable length: Invalid order
1: [2024-02-09 20:02:37.563] [Process: 32632] [error] [1707480147466901000-Global] Error: ConsolidationPlan: Trying to access a node that doesn't exist.
1: [2024-02-09 20:02:37.563] [Process: 32632] [error] [1707480147466901000-Global] Error: ConsolidationPlan: Trying to access a node that doesn't exist.
1: 0.080 s: CAPI: Consolidation plan
1: 0.078 s: CAPI: Consolidation plan dump
1: 0.650 s: Test writing to array with many dimension labels
1: 0.000 s: get dimension label from index -
1: 0.023 s: Write and read back TileDB array schema with dimension label
1: 0.000 s: get dimension label from name -
1: 0.025 s: Write and read back TileDB array schema with dimension label
1: 0.000 s: get dimension label from index -
1: 0.024 s: Write and read back TileDB array schema with dimension label
1: 0.000 s: get dimension label from name -
1: 0.025 s: Write and read back TileDB array schema with dimension label
1: 0.000 s: get dimension label from index -
1: 0.047 s: Write and read back TileDB array schema with dimension label
1: 0.000 s: get dimension label from name -
1: 0.021 s: Write and read back TileDB array schema with dimension label
1: 0.000 s: get dimension label from index -
1: 0.021 s: Write and read back TileDB array schema with dimension label
1: 0.000 s: get dimension label from name -
1: 0.100 s: Write and read back TileDB array schema with dimension label
1: [2024-02-09 20:02:38.584] [Process: 32632] [error] [1707480147466901000-Global] ArraySchema: Cannot add dimension label; Unordered dimension labels are not yet supported.
1: 0.005 s: Write and read back TileDB array schema with dimension label for unordered labels
1: [2024-02-09 20:02:38.589] [Process: 32632] [error] [1707480147466901000-Global] ArraySchema: Cannot add dimension label; Unordered dimension labels are not yet supported.
1: 0.005 s: Write and read back TileDB array schema with dimension label for unordered labels
1: 0.020 s: Write and read back TileDB array schema with dimension label with non-default filters
1: 0.022 s: Write and read back TileDB array schema with dimension label with non-default filters
1: 0.019 s: Write and read back TileDB array schema with dimension label with non-default tile
1: 0.019 s: Write and read back TileDB array schema with dimension label with non-default tile
1: [2024-02-09 20:02:38.677] [Process: 32632] [error] [1707480147466901000-Global] C API: Invalid TileDB error object
1: 0.009 s: Create array with current API
1: [2024-02-09 20:02:38.687] [Process: 32632] [error] [1707480147466901000-Global] GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:02:38.692] [Process: 32632] [error] [1707480147466901000-Global] GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: 0.028 s: C-API: create encrypted array with a dimension label
1: [2024-02-09 20:02:38.705] [Process: 32632] [error] [1707480147466901000-Global] C API: Invalid TileDB error object
1: 0.009 s: Create array with deprecated API
1: [2024-02-09 20:02:38.716] [Process: 32632] [error] [1707480147466901000-Global] GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:02:38.720] [Process: 32632] [error] [1707480147466901000-Global] GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: 0.029 s: C-API: create encrypted array with a dimension label
1: [2024-02-09 20:02:38.733] [Process: 32632] [error] [1707480147466901000-Global] C API: Invalid TileDB error object
1: 0.020 s: Create array with current API
1: 0.212 s: C-API: write encrypted dense array with a dimension label
1: [2024-02-09 20:02:38.946] [Process: 32632] [error] [1707480147466901000-Global] C API: Invalid TileDB error object
1: 0.008 s: Create array with deprecated API
1: 0.170 s: C-API: write encrypted dense array with a dimension label
1: 0.000 s: With array data
1: 0.000 s: Write increasing labels
1: 0.363 s: Round trip dimension label data for dense 1d array
1: 0.000 s: Without array data
1: 0.000 s: Write increasing labels
1: 0.219 s: Round trip dimension label data for dense 1d array
1: 0.000 s: With array data
1: 0.000 s: Write decreasing labels
1: 0.311 s: Round trip dimension label data for dense 1d array
1: 0.000 s: Without array data
1: 0.000 s: Write decreasing labels
1: 0.216 s: Round trip dimension label data for dense 1d array
1: 0.000 s: Increasing labels with bad order
1: [2024-02-09 20:02:40.285] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Task] Error: Caught std::exception: DimensionLabelQuery: Failed to process data query for label 'x'. WriterBase: The data for attribute 'label' is not in the expected order.
1: [2024-02-09 20:02:40.285] [Process: 32632] [error] [1707480147466901000-Global] DimensionLabelQuery: Failed to process data query for label 'x'. WriterBase: The data for attribute 'label' is not in the expected order.
1: 0.073 s: Test error on bad dimension label order for dense array
1: 0.000 s: Increasing labels with duplicate values
1: [2024-02-09 20:02:40.359] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Task] Error: Caught std::exception: DimensionLabelQuery: Failed to process data query for label 'x'. WriterBase: The data for attribute 'label' is not in the expected order.
1: [2024-02-09 20:02:40.359] [Process: 32632] [error] [1707480147466901000-Global] DimensionLabelQuery: Failed to process data query for label 'x'. WriterBase: The data for attribute 'label' is not in the expected order.
1: 0.073 s: Test error on bad dimension label order for dense array
1: 0.000 s: Decreasing labels with bad order
1: [2024-02-09 20:02:40.432] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Task] Error: Caught std::exception: DimensionLabelQuery: Failed to process data query for label 'x'. WriterBase: The data for attribute 'label' is not in the expected order.
1: [2024-02-09 20:02:40.432] [Process: 32632] [error] [1707480147466901000-Global] DimensionLabelQuery: Failed to process data query for label 'x'. WriterBase: The data for attribute 'label' is not in the expected order.
1: 0.073 s: Test error on bad dimension label order for dense array
1: 0.000 s: Decreasing labels with duplicate values
1: [2024-02-09 20:02:40.504] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Task] Error: Caught std::exception: DimensionLabelQuery: Failed to process data query for label 'x'. WriterBase: The data for attribute 'label' is not in the expected order.
1: [2024-02-09 20:02:40.504] [Process: 32632] [error] [1707480147466901000-Global] DimensionLabelQuery: Failed to process data query for label 'x'. WriterBase: The data for attribute 'label' is not in the expected order.
1: 0.073 s: Test error on bad dimension label order for dense array
1: 0.155 s: Test write array by label
1: [2024-02-09 20:02:40.784] [Process: 32632] [error] [1707480147466901000-Global] Query: Cannot init query; Using query conditions and dimension labels together is not supported.
1: 0.126 s: Test query conditions with dimension labels
1: 0.000 s: With array data
1: 0.000 s: Write increasing labels
1: 0.341 s: Round trip dimension label and array data for dense 1d array with var dimension label
1: 0.000 s: Without array data
1: 0.000 s: Write increasing labels
1: 0.233 s: Round trip dimension label and array data for dense 1d array with var dimension label
1: 0.000 s: With array data
1: 0.000 s: Write decreasing labels
1: 0.323 s: Round trip dimension label and array data for dense 1d array with var dimension label
1: 0.000 s: Without array data
1: 0.000 s: Write decreasing labels
1: 0.241 s: Round trip dimension label and array data for dense 1d array with var dimension label
1: [2024-02-09 20:02:41.941] [Process: 32632] [error] [1707480147415969000-Context: 174] [Query: 538] Row-major and column-major writes are only possible for dense arrays
1: [2024-02-09 20:02:41.941] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Query] Error: Row-major and column-major writes are only possible for dense arrays
1: 0.000 s: ROW_MAJOR
1: 0.014 s: Error when setting invalid layout on sparse write
1: [2024-02-09 20:02:41.955] [Process: 32632] [error] [1707480147415969000-Context: 175] [Query: 539] Row-major and column-major writes are only possible for dense arrays
1: [2024-02-09 20:02:41.955] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Query] Error: Row-major and column-major writes are only possible for dense arrays
1: 0.000 s: COL_MAJOR
1: 0.015 s: Error when setting invalid layout on sparse write
1: [2024-02-09 20:02:41.971] [Process: 32632] [error] [1707480147415969000-Context: 176] [Query: 540] Unordered writes are only possible for sparse arrays
1: [2024-02-09 20:02:41.971] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Query] Error: Unordered writes are only possible for sparse arrays
1: 0.017 s: Error setting invalid layout for dense array
1: 0.000 s: With attribute values
1: 0.000 s: Write increasing labels
1: 0.337 s: Round trip dimension label data for sparse 1D array
1: 0.000 s: Without attribute values
1: 0.000 s: Write increasing labels
1: 0.315 s: Round trip dimension label data for sparse 1D array
1: 0.000 s: With attribute values
1: 0.000 s: Write decreasing labels and array
1: 0.413 s: Round trip dimension label data for sparse 1D array
1: 0.000 s: Without attribute values
1: 0.000 s: Write decreasing labels and array
1: 0.225 s: Round trip dimension label data for sparse 1D array
1: 0.000 s: Increasing labels with bad order
1: [2024-02-09 20:02:43.335] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Task] Error: Caught std::exception: DimensionLabelQuery: Failed to process data query for label 'x'. WriterBase: The data for attribute 'label' is not in the expected order.
1: [2024-02-09 20:02:43.335] [Process: 32632] [error] [1707480147466901000-Global] DimensionLabelQuery: Failed to process data query for label 'x'. WriterBase: The data for attribute 'label' is not in the expected order.
1: 0.075 s: Test error on bad dimension label order for sparse array
1: 0.000 s: Increasing labels with duplicate values
1: [2024-02-09 20:02:43.407] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Task] Error: Caught std::exception: DimensionLabelQuery: Failed to process data query for label 'x'. WriterBase: The data for attribute 'label' is not in the expected order.
1: [2024-02-09 20:02:43.407] [Process: 32632] [error] [1707480147466901000-Global] DimensionLabelQuery: Failed to process data query for label 'x'. WriterBase: The data for attribute 'label' is not in the expected order.
1: 0.072 s: Test error on bad dimension label order for sparse array
1: 0.000 s: Increasing labels with unordered index
1: [2024-02-09 20:02:43.434] [Process: 32632] [error] [1707480147466901000-Global] DimensionLabelQuery: Failed to initialize the data query for label 'x'. DimensionLabelQuery: The dimension data must contain consecutive points when writing to a dimension label.
1: 0.028 s: Test error on bad dimension label order for sparse array
1: 0.000 s: Decreasing labels with bad order
1: [2024-02-09 20:02:43.514] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Task] Error: Caught std::exception: DimensionLabelQuery: Failed to process data query for label 'x'. WriterBase: The data for attribute 'label' is not in the expected order.
1: [2024-02-09 20:02:43.514] [Process: 32632] [error] [1707480147466901000-Global] DimensionLabelQuery: Failed to process data query for label 'x'. WriterBase: The data for attribute 'label' is not in the expected order.
1: 0.079 s: Test error on bad dimension label order for sparse array
1: 0.000 s: Increasing labels with duplicate values
1: [2024-02-09 20:02:43.590] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Task] Error: Caught std::exception: DimensionLabelQuery: Failed to process data query for label 'x'. WriterBase: The data for attribute 'label' is not in the expected order.
1: [2024-02-09 20:02:43.591] [Process: 32632] [error] [1707480147466901000-Global] DimensionLabelQuery: Failed to process data query for label 'x'. WriterBase: The data for attribute 'label' is not in the expected order.
1: 0.076 s: Test error on bad dimension label order for sparse array
1: 0.000 s: Increasing labels with unordered index
1: [2024-02-09 20:02:43.617] [Process: 32632] [error] [1707480147466901000-Global] DimensionLabelQuery: Failed to initialize the data query for label 'x'. DimensionLabelQuery: The dimension data must contain consecutive points when writing to a dimension label.
1: 0.028 s: Test error on bad dimension label order for sparse array
1: [2024-02-09 20:02:43.647] [Process: 32632] [error] [1707480147415969000-Context: 187] [Subarray: 1831] Cannot add range to to dimension; A range is already set on a dimension label for this dimension
1: [2024-02-09 20:02:43.647] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Subarray] Error: Cannot add range to to dimension; A range is already set on a dimension label for this dimension
1: [2024-02-09 20:02:43.647] [Process: 32632] [error] [1707480147466901000-Global] Subarray: [add_label_range] Dimension is already to set to use dimension label 'label'
1: 0.030 s: Subarray with a fixed-length dimension label range
1: [2024-02-09 20:02:43.678] [Process: 32632] [error] [1707480147415969000-Context: 188] [Subarray: 1832] Cannot add range to to dimension; A range is already set on a dimension label for this dimension
1: [2024-02-09 20:02:43.678] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Subarray] Error: Cannot add range to to dimension; A range is already set on a dimension label for this dimension
1: [2024-02-09 20:02:43.678] [Process: 32632] [error] [1707480147466901000-Global] Subarray: [add_label_range] Dimension is already to set to use dimension label 'id'
1: 0.037 s: Subarray with variable dimension label range
1: [2024-02-09 20:02:43.713] [Process: 32632] [error] [1707480147466901000-Global] ArraySchema: Unable to get dimension label reference; No dimension label named 'fake_label'.
1: [2024-02-09 20:02:43.713] [Process: 32632] [error] [1707480147466901000-Global] ArraySchema: Unable to get dimension label reference; No dimension label named 'fake_label'.
1: [2024-02-09 20:02:43.713] [Process: 32632] [error] [1707480147466901000-Global] Subarray: [add_label_range] Dimension '0' already has ranges set to it.
1: [2024-02-09 20:02:43.713] [Process: 32632] [error] [1707480147466901000-Global] Subarray: [add_label_range] Dimension '0' already has ranges set to it.
1: 0.030 s: Subarray with dimension label ranges blocked
1: 0.000 s: dense
1: 0.599 s: C++ API: Aggregates basic count
1: 0.000 s: dense
1: 0.538 s: C++ API: Aggregates basic count
1: 0.000 s: sparse
1: 0.437 s: C++ API: Aggregates basic count
1: 0.000 s: sparse
1: 0.427 s: C++ API: Aggregates basic count
1: 0.000 s: sparse
1: 0.469 s: C++ API: Aggregates basic count
1: 0.000 s: sparse
1: 0.407 s: C++ API: Aggregates basic count
1: 0.000 s: dense
1: 0.632 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 0
1: 0.000 s: dense
1: 0.557 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.421 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.433 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.428 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.422 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 0
1: 0.000 s: dense
1: 0.618 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 1
1: 0.000 s: dense
1: 0.576 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.429 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.441 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.444 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.826 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 1
1: 0.000 s: dense
1: 0.611 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 2
1: 0.000 s: dense
1: 0.577 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.435 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.443 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.413 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.436 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 2
1: 0.000 s: dense
1: 0.622 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 3
1: 0.000 s: dense
1: 0.579 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.432 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.455 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.433 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.418 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 3
1: 0.000 s: dense
1: 0.627 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 4
1: 0.000 s: dense
1: 0.581 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.482 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.487 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.427 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.419 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 4
1: 0.000 s: dense
1: 0.710 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 5
1: 0.000 s: dense
1: 0.576 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.439 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.443 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.462 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.418 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 5
1: 0.000 s: dense
1: 0.637 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 6
1: 0.000 s: dense
1: 0.572 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.445 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.441 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.402 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.526 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 6
1: 0.000 s: dense
1: 0.627 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 7
1: 0.000 s: dense
1: 0.576 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.429 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.437 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.402 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.469 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 7
1: 0.000 s: dense
1: 0.765 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 8
1: 0.000 s: dense
1: 0.577 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.447 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.436 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.414 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.427 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 8
1: 0.000 s: dense
1: 0.622 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 9
1: 0.000 s: dense
1: 0.556 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.432 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.442 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.410 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.434 s: C++ API: Aggregates basic sum - SumFixedTypesUnderTest - 9
1: 0.000 s: dense
1: 0.748 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 0
1: 0.000 s: dense
1: 0.577 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.432 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.442 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.407 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.419 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 0
1: 0.000 s: dense
1: 0.665 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 1
1: 0.000 s: dense
1: 0.576 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.431 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.445 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.408 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.441 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 1
1: 0.000 s: dense
1: 0.614 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 2
1: 0.000 s: dense
1: 0.626 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.418 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.432 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.412 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.423 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 2
1: 0.000 s: dense
1: 0.617 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 3
1: 0.000 s: dense
1: 0.711 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.428 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.431 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.411 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.422 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 3
1: 0.000 s: dense
1: 0.626 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 4
1: 0.000 s: dense
1: 0.611 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.464 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.443 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.414 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.437 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 4
1: 0.000 s: dense
1: 0.616 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 5
1: 0.000 s: dense
1: 0.613 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.439 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.442 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.407 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.421 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 5
1: 0.000 s: dense
1: 0.615 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 6
1: 0.000 s: dense
1: 0.563 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.536 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.447 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.411 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.414 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 6
1: 0.000 s: dense
1: 0.604 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 7
1: 0.000 s: dense
1: 0.600 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.438 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.449 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.411 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.427 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 7
1: 0.000 s: dense
1: 0.608 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 8
1: 0.000 s: dense
1: 0.598 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.440 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 8
1: 0.001 s: sparse
1: 0.533 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.398 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.410 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 8
1: 0.000 s: dense
1: 0.607 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 9
1: 0.000 s: dense
1: 0.637 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.425 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.544 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.408 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.439 s: C++ API: Aggregates basic mean - MeanFixedTypesUnderTest - 9
1: 0.000 s: dense
1: 0.615 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 0
1: 0.000 s: dense
1: 0.580 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.430 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.435 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.425 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.422 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 0
1: 0.000 s: dense
1: 0.617 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 1
1: 0.000 s: dense
1: 0.590 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.426 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.448 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.430 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.420 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 1
1: 0.000 s: dense
1: 0.603 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 2
1: 0.000 s: dense
1: 0.557 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.415 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.431 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.438 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.431 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 2
1: 0.000 s: dense
1: 0.594 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 3
1: 0.000 s: dense
1: 0.585 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.434 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.430 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.403 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.428 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 3
1: 0.000 s: dense
1: 0.625 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 4
1: 0.000 s: dense
1: 0.558 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.417 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.430 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.411 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.469 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 4
1: 0.000 s: dense
1: 0.620 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 5
1: 0.000 s: dense
1: 0.574 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.436 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.445 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.411 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.442 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 5
1: 0.000 s: dense
1: 0.615 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 6
1: 0.000 s: dense
1: 0.555 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.446 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.436 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.409 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.412 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 6
1: 0.000 s: dense
1: 0.709 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 7
1: 0.000 s: dense
1: 0.576 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.439 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.471 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.419 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.428 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 7
1: 0.000 s: dense
1: 0.633 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 8
1: 0.000 s: dense
1: 0.574 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.427 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.461 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.407 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.423 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 8
1: 0.000 s: dense
1: 0.650 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 9
1: 0.000 s: dense
1: 0.555 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.421 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.475 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.413 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.420 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 9
1: 0.000 s: dense
1: 0.634 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 10
1: 0.000 s: dense
1: 0.597 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 10
1: 0.000 s: sparse
1: 0.429 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 10
1: 0.000 s: sparse
1: 0.470 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 10
1: 0.000 s: sparse
1: 0.406 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 10
1: 0.000 s: sparse
1: 0.418 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 10
1: 0.000 s: dense
1: 0.608 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 11
1: 0.000 s: dense
1: 0.584 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 11
1: 0.000 s: sparse
1: 0.425 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 11
1: 0.000 s: sparse
1: 0.434 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 11
1: 0.000 s: sparse
1: 0.398 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 11
1: 0.000 s: sparse
1: 0.420 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 11
1: 0.000 s: dense
1: 0.622 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 12
1: 0.000 s: dense
1: 0.690 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 12
1: 0.000 s: sparse
1: 0.431 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 12
1: 0.000 s: sparse
1: 0.451 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 12
1: 0.000 s: sparse
1: 0.411 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 12
1: 0.000 s: sparse
1: 0.418 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 12
1: 0.000 s: dense
1: 0.627 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 13
1: 0.000 s: dense
1: 0.583 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 13
1: 0.000 s: sparse
1: 0.415 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 13
1: 0.000 s: sparse
1: 0.446 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 13
1: 0.000 s: sparse
1: 0.411 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 13
1: 0.000 s: sparse
1: 0.429 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 13
1: 0.000 s: dense
1: 0.595 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 14
1: 0.000 s: dense
1: 0.551 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 14
1: 0.000 s: sparse
1: 0.600 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 14
1: 0.000 s: sparse
1: 0.626 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 14
1: 0.000 s: sparse
1: 0.430 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 14
1: 0.000 s: sparse
1: 0.416 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 14
1: 0.000 s: dense
1: 0.634 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 15
1: 0.000 s: dense
1: 0.582 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 15
1: 0.000 s: sparse
1: 0.429 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 15
1: 0.000 s: sparse
1: 0.457 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 15
1: 0.000 s: sparse
1: 0.441 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 15
1: 0.000 s: sparse
1: 0.422 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 15
1: 0.000 s: dense
1: 0.620 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 16
1: 0.000 s: dense
1: 0.570 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 16
1: 0.000 s: sparse
1: 0.426 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 16
1: 0.000 s: sparse
1: 0.461 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 16
1: 0.000 s: sparse
1: 0.440 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 16
1: 0.000 s: sparse
1: 0.421 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 16
1: 0.000 s: dense
1: 0.589 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 17
1: 0.000 s: dense
1: 0.569 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 17
1: 0.000 s: sparse
1: 0.431 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 17
1: 0.000 s: sparse
1: 0.440 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 17
1: 0.000 s: sparse
1: 0.439 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 17
1: 0.000 s: sparse
1: 0.416 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 17
1: 0.000 s: dense
1: 0.618 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 18
1: 0.000 s: dense
1: 0.574 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 18
1: 0.000 s: sparse
1: 0.435 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 18
1: 0.000 s: sparse
1: 0.448 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 18
1: 0.000 s: sparse
1: 0.426 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 18
1: 0.000 s: sparse
1: 0.475 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 18
1: 0.000 s: dense
1: 0.614 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 19
1: 0.000 s: dense
1: 0.585 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 19
1: 0.000 s: sparse
1: 0.427 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 19
1: 0.000 s: sparse
1: 0.447 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 19
1: 0.000 s: sparse
1: 0.442 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 19
1: 0.000 s: sparse
1: 0.434 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 19
1: 0.000 s: dense
1: 0.608 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 20
1: 0.000 s: dense
1: 0.602 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 20
1: 0.000 s: sparse
1: 0.434 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 20
1: 0.000 s: sparse
1: 0.435 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 20
1: 0.000 s: sparse
1: 0.456 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 20
1: 0.000 s: sparse
1: 0.420 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 20
1: 0.000 s: dense
1: 0.624 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 21
1: 0.000 s: dense
1: 0.575 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 21
1: 0.000 s: sparse
1: 0.431 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 21
1: 0.000 s: sparse
1: 0.447 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 21
1: 0.000 s: sparse
1: 0.409 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 21
1: 0.000 s: sparse
1: 0.511 s: C++ API: Aggregates basic min/max - MinMaxFixedTypesUnderTest - 21
1: 0.000 s: dense
1: 0.664 s: C++ API: Aggregates basic min/max var - AggUnderTest - 0
1: 0.000 s: dense
1: 0.634 s: C++ API: Aggregates basic min/max var - AggUnderTest - 0
1: 0.000 s: sparse
1: 0.448 s: C++ API: Aggregates basic min/max var - AggUnderTest - 0
1: 0.000 s: sparse
1: 0.391 s: C++ API: Aggregates basic min/max var - AggUnderTest - 0
1: 0.000 s: sparse
1: 0.363 s: C++ API: Aggregates basic min/max var - AggUnderTest - 0
1: 0.000 s: sparse
1: 0.406 s: C++ API: Aggregates basic min/max var - AggUnderTest - 0
1: 0.000 s: dense
1: 0.693 s: C++ API: Aggregates basic min/max var - AggUnderTest - 1
1: 0.000 s: dense
1: 0.626 s: C++ API: Aggregates basic min/max var - AggUnderTest - 1
1: 0.000 s: sparse
1: 0.385 s: C++ API: Aggregates basic min/max var - AggUnderTest - 1
1: 0.000 s: sparse
1: 0.396 s: C++ API: Aggregates basic min/max var - AggUnderTest - 1
1: 0.000 s: sparse
1: 0.360 s: C++ API: Aggregates basic min/max var - AggUnderTest - 1
1: 0.000 s: sparse
1: 0.402 s: C++ API: Aggregates basic min/max var - AggUnderTest - 1
1: 0.000 s: dense
1: 0.670 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 0
1: 0.000 s: dense
1: 0.008 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.430 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.444 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 0
1: 0.000 s: dense
1: 0.633 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 1
1: 0.000 s: dense
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.431 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.499 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 1
1: 0.000 s: dense
1: 0.683 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 2
1: 0.000 s: dense
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.433 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.443 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.008 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 2
1: 0.000 s: dense
1: 0.603 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 3
1: 0.000 s: dense
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.443 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.451 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 3
1: 0.000 s: dense
1: 0.622 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 4
1: 0.000 s: dense
1: 0.008 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.437 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.449 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 4
1: 0.000 s: dense
1: 0.621 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 5
1: 0.000 s: dense
1: 0.008 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.433 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.485 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.008 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 5
1: 0.000 s: dense
1: 0.921 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 6
1: 0.000 s: dense
1: 0.009 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.577 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.448 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.008 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 6
1: 0.000 s: dense
1: 0.670 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 7
1: 0.000 s: dense
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.438 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.451 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 7
1: 0.000 s: dense
1: 0.625 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 8
1: 0.000 s: dense
1: 0.008 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.506 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.443 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.008 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 8
1: 0.000 s: dense
1: 0.611 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 9
1: 0.000 s: dense
1: 0.008 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.438 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.445 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 9
1: 0.000 s: dense
1: 0.622 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 10
1: 0.000 s: dense
1: 0.008 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 10
1: 0.000 s: sparse
1: 0.474 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 10
1: 0.000 s: sparse
1: 0.457 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 10
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 10
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count - NullCountFixedTypesUnderTest - 10
1: 0.000 s: dense
1: 0.702 s: C++ API: Aggregates basic null count var
1: 0.000 s: dense
1: 0.007 s: C++ API: Aggregates basic null count var
1: 0.000 s: sparse
1: 0.408 s: C++ API: Aggregates basic null count var
1: 0.000 s: sparse
1: 0.393 s: C++ API: Aggregates basic null count var
1: 0.000 s: sparse
1: 0.008 s: C++ API: Aggregates basic null count var
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates basic null count var
1: 0.000 s: dense
1: 1.039 s: C++ API: Aggregates var overflow
1: 0.000 s: dense
1: 0.008 s: C++ API: Aggregates var overflow
1: 0.000 s: sparse
1: 0.465 s: C++ API: Aggregates var overflow
1: 0.000 s: sparse
1: 0.480 s: C++ API: Aggregates var overflow
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates var overflow
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates var overflow
1: 0.000 s: dense
1: 0.008 s: C++ API: Aggregates var overflow, exception
1: 0.000 s: dense
1: 0.007 s: C++ API: Aggregates var overflow, exception
1: 0.000 s: sparse
1: [2024-02-09 20:05:18.632] [Process: 32632] [error] [1707480147466901000-Global] SparseUnorderedWithDupsReader: Overflow happened after aggregate was computed, aggregate recompute pass is not yet implemented
1: [2024-02-09 20:05:18.660] [Process: 32632] [error] [1707480147466901000-Global] SparseUnorderedWithDupsReader: Overflow happened after aggregate was computed, aggregate recompute pass is not yet implemented
1: 0.413 s: C++ API: Aggregates var overflow, exception
1: 0.000 s: sparse
1: [2024-02-09 20:05:19.059] [Process: 32632] [error] [1707480147466901000-Global] SparseGlobalOrderReader: Overflow happened after aggregate was computed, aggregate recompute pass is not yet implemented
1: [2024-02-09 20:05:19.089] [Process: 32632] [error] [1707480147466901000-Global] SparseGlobalOrderReader: Overflow happened after aggregate was computed, aggregate recompute pass is not yet implemented
1: 0.429 s: C++ API: Aggregates var overflow, exception
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates var overflow, exception
1: 0.000 s: sparse
1: 0.007 s: C++ API: Aggregates var overflow, exception
1: 0.000 s: dense
1: 0.589 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 0
1: 0.000 s: dense
1: 0.565 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.456 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.496 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.427 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 0
1: 0.000 s: sparse
1: 0.449 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 0
1: 0.000 s: dense
1: 0.567 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 1
1: 0.000 s: dense
1: 0.592 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.467 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.464 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.422 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 1
1: 0.000 s: sparse
1: 0.424 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 1
1: 0.000 s: dense
1: 0.569 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 2
1: 0.000 s: dense
1: 0.575 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.481 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.429 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.417 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 2
1: 0.000 s: sparse
1: 0.438 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 2
1: 0.000 s: dense
1: 0.550 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 3
1: 0.000 s: dense
1: 0.502 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.493 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.444 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.445 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 3
1: 0.000 s: sparse
1: 0.406 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 3
1: 0.000 s: dense
1: 0.549 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 4
1: 0.000 s: dense
1: 0.529 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.470 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.427 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.397 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 4
1: 0.000 s: sparse
1: 0.424 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 4
1: 0.000 s: dense
1: 0.554 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 5
1: 0.000 s: dense
1: 0.528 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.426 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.432 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.396 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 5
1: 0.000 s: sparse
1: 0.398 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 5
1: 0.000 s: dense
1: 0.546 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 6
1: 0.000 s: dense
1: 0.529 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.447 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.432 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.405 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 6
1: 0.000 s: sparse
1: 0.403 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 6
1: 0.000 s: dense
1: 0.687 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 7
1: 0.000 s: dense
1: 0.529 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.409 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.430 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.425 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 7
1: 0.000 s: sparse
1: 0.414 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 7
1: 0.000 s: dense
1: 0.563 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 8
1: 0.000 s: dense
1: 0.521 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.419 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.424 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.423 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 8
1: 0.000 s: sparse
1: 0.494 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 8
1: 0.000 s: dense
1: 0.556 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 9
1: 0.000 s: dense
1: 0.526 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.424 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.431 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.409 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 9
1: 0.000 s: sparse
1: 0.442 s: C++ API: Aggregates incomplete test - SumFixedTypesUnderTest - 9
1: [2024-02-09 20:05:48.046] [Process: 32632] [error] [1707480147466901000-Global] C API: There is no field nonexistent
1: [2024-02-09 20:05:48.047] [Process: 32632] [error] [1707480147466901000-Global] C API: An aggregate operation for output field: Sum already exists.
1: [2024-02-09 20:05:48.073] [Process: 32632] [error] [1707480147466901000-Global] C API: argument `query` is at a too late state of its lifetime
1: [2024-02-09 20:05:48.073] [Process: 32632] [error] [1707480147466901000-Global] C API: argument `query` is at a too late state of its lifetime
1: 0.476 s: CPP: Aggregates - Basic
1: [2024-02-09 20:05:48.160] [Process: 32632] [error] [1707480147466901000-Global] Error: ConsolidationPlan: Trying to access a node that doesn't exist.
1: [2024-02-09 20:05:48.160] [Process: 32632] [error] [1707480147466901000-Global] Error: ConsolidationPlan: Trying to access a node that doesn't exist.
1: 0.081 s: C++ API: Consolidation plan
1: 0.080 s: C++ API: Consolidation plan dump
1: 0.134 s: C++ API: Consolidation plan, de-interleave 1
1: 0.249 s: C++ API: Consolidation plan, de-interleave 2
1: 0.190 s: C++ API: Consolidation plan, de-interleave 3
1: 0.841 s: C++ API: Consolidation plan, split 1
1: 0.134 s: C++ API: Consolidation plan, combine small 1
1: 0.842 s: C++ API: Consolidation plan, combine small 2
1: 0.947 s: C++ API: Consolidation plan, combine small 3
1: 1.818 s: C++ API: Consolidation plan, complex 1
1: 
1: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1: tiledb_unit is a Catch2 v3.5.2 host application.
1: Run with -? for options
1: 
1: -------------------------------------------------------------------------------
1: Average cell size
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-average-cell-size.cc:235
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-average-cell-size.cc:221: FAILED:
1:   CHECK( avg_cell_sizes["a3"] == a3_size )
1: with expansion:
1:   0 == {?}
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-average-cell-size.cc:191: FAILED:
1:   CHECK( avg_cell_sizes["a3"] == a3_size )
1: with expansion:
1:   0 == {?}
1: 
1: 0.415 s: Average cell size
1: [2024-02-09 20:05:53.827] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: Reading data past end of serialized data size.
1: [2024-02-09 20:05:53.828] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: Reading data past end of serialized data size.
1: [2024-02-09 20:05:53.828] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: Reading data past end of serialized data size.
1: 0.017 s: Backwards compatibility: Test error opening 1.3.0 array
1: 0.017 s: Backwards compatibility: Test reading 1.4.0 array with non-split coords
1: 0.005 s: Backwards compatibility: Test reading arrays written with previous version of tiledb
1: 0.081 s: Backwards compatibility: Write to an array of older version
1: 0.005 s: Backwards compatibility: Test reading arrays written with previous version of tiledb using split buffers
1: 0.000 s: no serialization
1: 0.123 s: Backwards compatibility: Upgrades an array of older version and write/read it
1: 0.005 s: Backwards compatibility: Test reading group metadata written with previous version of tiledb
1: [2024-02-09 20:05:54.068] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Buffer] Error: Cannot get buffer 2 from buffer list; index out of bounds.
1: 0.000 s: BufferList: Test append
1: [2024-02-09 20:05:54.068] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Buffer] Error: BufferList error; could not read requested byte count.
1: [2024-02-09 20:05:54.069] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Buffer] Error: BufferList error; could not read requested byte count.
1: 0.000 s: BufferList: Test read
1: 0.000 s: no serialization
1: [2024-02-09 20:05:54.076] [Process: 32632] [error] [1707480147466901000-Global] Attribute: Cannot set number of values per cell; Attribute datatype `ANY` is always variable-sized
1: 0.111 s: C API: Test `ANY` datatype
1: 0.000 s: C API: as_built: Ensure dump is non-empty
1: 0.001 s: C API: as_built: Ensure dump has json output
1: 0.000 s: C API: as_built: Validate top-level key
1: 0.000 s: C API: as_built: Validate parameters key
1: 0.000 s: C API: as_built: Validate storage_backends key
1: 0.000 s: C API: as_built: storage_backends attributes
1: 0.000 s: C API: as_built: Validate support key
1: 0.000 s: C API: as_built: support attributes
1: 0.017 s: C API: Test getting array URI
1: [2024-02-09 20:05:54.201] [Process: 32632] [error] [1707480147466901000-Global] Error: Failed to create TileDB array object; Invalid URI
1: 0.004 s: C API: Set null URI
1: [2024-02-09 20:05:54.206] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: Cannot open array; Array does not exist.
1: [2024-02-09 20:05:54.207] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: Cannot open array; Array does not exist.
1: [2024-02-09 20:05:54.207] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: Cannot open array; Array does not exist.
1: 0.006 s: C API: Set invalid URI
1: [2024-02-09 20:05:54.216] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Encryption] Error: Cannot create key; invalid key length for encryption type.
1: [2024-02-09 20:05:54.221] [Process: 32632] [error] [1707480147415969000-Context: 1060] Cannot create array; Array 'file:///opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/tiledb_test/encrypyted_array' already exists
1: [2024-02-09 20:05:54.221] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::StorageManager] Error: Cannot create array; Array 'file:///opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/tiledb_test/encrypyted_array' already exists
1: [2024-02-09 20:05:54.242] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:05:54.242] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:05:54.242] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:05:54.248] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:05:54.248] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:05:54.248] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:05:54.285] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: [2024-02-09 20:05:54.285] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: [2024-02-09 20:05:54.286] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: [2024-02-09 20:05:54.286] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: [2024-02-09 20:05:54.297] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::Encryption] Error: Cannot create key; invalid key length for encryption type.
1: [2024-02-09 20:05:54.297] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::Encryption] Error: Cannot create key; invalid key length for encryption type.
1: [2024-02-09 20:05:54.308] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:05:54.308] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:05:54.308] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:05:54.313] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: [2024-02-09 20:05:54.313] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: [2024-02-09 20:05:54.314] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: [2024-02-09 20:05:54.314] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: [2024-02-09 20:05:54.317] [Process: 32632] [error] [1707480147466901000-Global] GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:05:54.324] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: [2024-02-09 20:05:54.324] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: [2024-02-09 20:05:54.339] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:05:54.339] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:05:54.339] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:05:54.353] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: [2024-02-09 20:05:54.353] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: [2024-02-09 20:05:54.353] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: [2024-02-09 20:05:54.354] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: 0.149 s: - API calls with encrypted schema
1: 0.157 s: C API: Test array with encryption
1: [2024-02-09 20:05:54.388] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with NO_ENCRYPTION but given key is for AES_256_GCM
1: [2024-02-09 20:05:54.388] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with NO_ENCRYPTION but given key is for AES_256_GCM
1: [2024-02-09 20:05:54.389] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with NO_ENCRYPTION but given key is for AES_256_GCM
1: [2024-02-09 20:05:54.412] [Process: 32632] [error] [1707480147466901000-Global] GenericTileIO: Error reading generic tile; tile is encrypted with NO_ENCRYPTION but given key is for AES_256_GCM
1: 0.052 s: - API calls with unencrypted schema
1: 0.059 s: C API: Test array with encryption
1: 0.000 s: no serialization
1: 0.000 s: - without encryption
1: -------------------------------------------------------------------------------
1: C API: Test opening array at timestamp, reads
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-array.cc:890
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-array.cc:1219: FAILED:
1:   CHECK( !std::memcmp(buffer_read, buffer_read_at_c, sizeof(buffer_read_at_c)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-array.cc:1315: FAILED:
1:   CHECK( !std::memcmp( buffer_read, buffer_read_reopen_c, sizeof(buffer_read_reopen_c)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-array.cc:1368: FAILED:
1:   CHECK( !std::memcmp( buffer_read, buffer_read_reopen_start_c, sizeof(buffer_read_reopen_start_c)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-array.cc:1440: FAILED:
1:   CHECK( !std::memcmp( buffer_read, buffer_read_open_start_c, sizeof(buffer_read_open_start_c)) )
1: with expansion:
1:   false
1: 
1: 0.365 s: C API: Test opening array at timestamp, reads
1: 0.000 s: - with encryption
1: -------------------------------------------------------------------------------
1: C API: Test opening array at timestamp, reads
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-array.cc:890
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-array.cc:1219: FAILED:
1:   CHECK( !std::memcmp(buffer_read, buffer_read_at_c, sizeof(buffer_read_at_c)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-array.cc:1315: FAILED:
1:   CHECK( !std::memcmp( buffer_read, buffer_read_reopen_c, sizeof(buffer_read_reopen_c)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-array.cc:1368: FAILED:
1:   CHECK( !std::memcmp( buffer_read, buffer_read_reopen_start_c, sizeof(buffer_read_reopen_start_c)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-array.cc:1440: FAILED:
1:   CHECK( !std::memcmp( buffer_read, buffer_read_open_start_c, sizeof(buffer_read_open_start_c)) )
1: with expansion:
1:   false
1: 
1: 0.250 s: C API: Test opening array at timestamp, reads
1: 0.000 s: no serialization
1: 0.000 s: - without encryption
1: 0.092 s: C API: Test opening array at timestamp, writes
1: 0.000 s: - with encryption
1: 0.097 s: C API: Test opening array at timestamp, writes
1: 0.005 s: ** 1D
1: 0.006 s: - Check out-of-bounds coordinates
1: [2024-02-09 20:05:55.244] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Dimension] Error: Coordinate 30 is out of domain bounds [-1, 2] on dimension 'd1'
1: 0.020 s: C API: Check writing coordinates out of bounds
1: 0.005 s: ** 2D
1: 0.005 s: - Check out-of-bounds coordinates
1: [2024-02-09 20:05:55.265] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Dimension] Error: Coordinate 30 is out of domain bounds [1, 10] on dimension 'd2'
1: 0.021 s: C API: Check writing coordinates out of bounds
1: 0.005 s: ** 1D
1: 0.005 s: - Do not check out-of-bounds coordinates
1: 0.064 s: C API: Check writing coordinates out of bounds
1: 0.004 s: ** 2D
1: 0.005 s: - Do not check out-of-bounds coordinates
1: 0.072 s: C API: Check writing coordinates out of bounds
1: 0.016 s: C API: Test empty array
1: [2024-02-09 20:05:55.609] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: Cannot open array; Array does not exist.
1: [2024-02-09 20:05:55.609] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: Cannot open array; Array does not exist.
1: [2024-02-09 20:05:55.609] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: Cannot open array; Array does not exist.
1: 0.189 s: C API: Test deletion of array
1: [2024-02-09 20:05:55.778] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: Cannot open array; Array does not exist.
1: [2024-02-09 20:05:55.778] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: Cannot open array; Array does not exist.
1: [2024-02-09 20:05:55.778] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: Cannot open array; Array does not exist.
1: 0.169 s: C API: Test deletion of array
1: [2024-02-09 20:05:55.791] [Process: 32632] [error] [1707480147415969000-Context: 1095] [Query: 6034] [Subarray: 39322] Cannot add range to dimension 'd1'; Range [10, 20] is out of domain bounds [-1, 2]
1: [2024-02-09 20:05:55.791] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Subarray] Error: Cannot add range to dimension 'd1'; Range [10, 20] is out of domain bounds [-1, 2]
1: [2024-02-09 20:05:55.791] [Process: 32632] [error] [1707480147466901000-Global] Query: [set_subarray] Setting a subarray is not supported on sparse writes.
1: 0.015 s: C API: Test query errors, getting subarray info from write queries in sparse arrays
1: [2024-02-09 20:05:55.807] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: Cannot initialize writer; Multi-range dense writes are not supported
1: 0.015 s: C API: Test query errors, dense writes
1: [2024-02-09 20:05:55.825] [Process: 32632] [error] [1707480147415969000-Context: 1097] [Query: 6036] Unordered writes are only possible for sparse arrays
1: [2024-02-09 20:05:55.825] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Query] Error: Unordered writes are only possible for sparse arrays
1: 0.018 s: C API: Test query errors, dense unordered writes
1: [2024-02-09 20:05:55.841] [Process: 32632] [error] [1707480147466901000-Global] ReaderBase: Cannot initialize reader; Multi-range reads are not supported on a global order query.
1: 0.016 s: C API: Test query errors, dense reads in global order
1: 0.003 s: Test array serialization
1: 0.000 s: - valid and supported Datatypes
1: 0.004 s: Test dimension datatypes
1: [2024-02-09 20:05:55.870] [Process: 32632] [error] [1707480147466901000-Global] TileDB internal: Datatype::CHAR is not a valid Dimension Datatype
1: [2024-02-09 20:05:55.871] [Process: 32632] [error] [1707480147466901000-Global] TileDB internal: Datatype::BOOL is not a valid Dimension Datatype
1: 0.016 s: - valid and unsupported Datatypes
1: 0.021 s: Test dimension datatypes
1: [2024-02-09 20:05:55.885] [Process: 32632] [error] [1707480147466901000-Global] TileDB internal: [Dimension::ensure_datatype_is_supported]  (TileDB internal: Invalid Datatype (42))
1: [2024-02-09 20:05:55.885] [Process: 32632] [error] [1707480147466901000-Global] TileDB internal: [Dimension::ensure_datatype_is_supported]  (TileDB internal: Invalid Datatype (100))
1: 0.010 s: - invalid Datatypes
1: 0.015 s: Test dimension datatypes
1: 0.003 s: Test array open serialization
1: 0.003 s: Test array and query serialization
1: 0.003 s: Test array fragments serialization
1: 0.000 s: - No serialization
1: [2024-02-09 20:05:55.900] [Process: 32632] [error] [1707480147466901000-Global] ArraySchema: Array schema check failed; Domain not set
1: [2024-02-09 20:05:55.901] [Process: 32632] [error] [1707480147466901000-Global] ArraySchema: Array schema check failed; Domain not set
1: [2024-02-09 20:05:55.901] [Process: 32632] [error] [1707480147466901000-Global] Dimension: Tile extent check failed on dimension 'd2'; Tile extent 10000 exceeds range on dimension domain [0, 10]
1: [2024-02-09 20:05:55.901] [Process: 32632] [error] [1707480147466901000-Global] ArraySchema: Array schema check failed; No attributes provided
1: [2024-02-09 20:05:55.902] [Process: 32632] [error] [1707480147466901000-Global] ArraySchema: Array schema check failed; No attributes provided
1: [2024-02-09 20:05:55.902] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArraySchema] Error: Cannot add attribute; Attribute names starting with '__' are reserved
1: [2024-02-09 20:05:55.902] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArraySchema] Error: Cannot add attribute; Attribute names starting with '__' are reserved
1: [2024-02-09 20:05:55.902] [Process: 32632] [error] [1707480147466901000-Global] Error: Failed to create array; Invalid array URI
1: [2024-02-09 20:05:55.906] [Process: 32632] [error] [1707480147415969000-Context: 1106] Cannot create array; Array 'file:///opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/tiledb_test/dense_test_100x100_10x10' already exists
1: [2024-02-09 20:05:55.906] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::StorageManager] Error: Cannot create array; Array 'file:///opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/tiledb_test/dense_test_100x100_10x10' already exists
1: [2024-02-09 20:05:55.909] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArraySchema] Error: Attribute index: 1 out of bounds given 1 attributes in array file:///opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/tiledb_test/dense_test_100x100_10x10/
1: [2024-02-09 20:05:55.909] [Process: 32632] [error] [1707480147466901000-Global] C API: Dimension index 2 is out of bounds; valid indices are 0 to 1
1: 0.045 s: C API: Test array schema creation and retrieval
1: 0.000 s: - Serialization
1: [2024-02-09 20:05:55.946] [Process: 32632] [error] [1707480147466901000-Global] ArraySchema: Array schema check failed; Domain not set
1: [2024-02-09 20:05:55.946] [Process: 32632] [error] [1707480147466901000-Global] ArraySchema: Array schema check failed; Domain not set
1: [2024-02-09 20:05:55.946] [Process: 32632] [error] [1707480147466901000-Global] Dimension: Tile extent check failed on dimension 'd2'; Tile extent 10000 exceeds range on dimension domain [0, 10]
1: [2024-02-09 20:05:55.947] [Process: 32632] [error] [1707480147466901000-Global] ArraySchema: Array schema check failed; No attributes provided
1: [2024-02-09 20:05:55.947] [Process: 32632] [error] [1707480147466901000-Global] ArraySchema: Array schema check failed; No attributes provided
1: [2024-02-09 20:05:55.947] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArraySchema] Error: Cannot add attribute; Attribute names starting with '__' are reserved
1: [2024-02-09 20:05:55.947] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArraySchema] Error: Cannot add attribute; Attribute names starting with '__' are reserved
1: [2024-02-09 20:05:55.947] [Process: 32632] [error] [1707480147466901000-Global] Error: Failed to create array; Invalid array URI
1: [2024-02-09 20:05:55.954] [Process: 32632] [error] [1707480147415969000-Context: 1107] Cannot create array; Array 'file:///opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/tiledb_test/dense_test_100x100_10x10' already exists
1: [2024-02-09 20:05:55.954] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::StorageManager] Error: Cannot create array; Array 'file:///opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/tiledb_test/dense_test_100x100_10x10' already exists
1: [2024-02-09 20:05:55.957] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArraySchema] Error: Attribute index: 1 out of bounds given 1 attributes in array file:///opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/tiledb_test/dense_test_100x100_10x10/
1: [2024-02-09 20:05:55.958] [Process: 32632] [error] [1707480147466901000-Global] C API: Dimension index 2 is out of bounds; valid indices are 0 to 1
1: 0.031 s: C API: Test array schema creation and retrieval
1: 0.004 s: C API: Test array schema one anonymous dimension
1: [2024-02-09 20:05:55.979] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArraySchema] Error: Cannot set domain; Dense arrays do not support dimension datatype 'FLOAT64'
1: [2024-02-09 20:05:55.979] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArraySchema] Error: Cannot set domain; Dense arrays do not support dimension datatype 'FLOAT64'
1: 0.004 s: C API: Test array schema with invalid float dense domain
1: [2024-02-09 20:05:55.984] [Process: 32632] [error] [1707480147466901000-Global] ArraySchema: Sparse arrays cannot have their capacity equal to zero.
1: 0.004 s: C API: Test sparse array schema with invalid capacity
1: [2024-02-09 20:05:55.988] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Dimension] Error: Domain check failed; Domain range (upper + lower + 1) is larger than the maximum unsigned number
1: [2024-02-09 20:05:55.989] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Dimension] Error: Domain check failed; Domain range (upper + lower + 1) is larger than the maximum unsigned number
1: [2024-02-09 20:05:55.989] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Dimension] Error: Tile extent check failed; domain max expanded to multiple of tile extent exceeds max value representable by domain type. Reduce domain max by 1 tile extent to allow for expansion.
1: [2024-02-09 20:05:55.989] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Dimension] Error: Tile extent check failed; domain max expanded to multiple of tile extent exceeds max value representable by domain type. Reduce domain max by 1 tile extent to allow for expansion.
1: [2024-02-09 20:05:55.989] [Process: 32632] [error] [1707480147466901000-Global] Dimension: Tile extent check failed on dimension 'd3'; Tile extent 20 exceeds range on dimension domain [0, 10]
1: [2024-02-09 20:05:55.990] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Dimension] Error: Domain check failed; Upper domain bound should not be smaller than the lower one
1: [2024-02-09 20:05:55.990] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Dimension] Error: Domain check failed; Upper domain bound should not be smaller than the lower one
1: [2024-02-09 20:05:55.990] [Process: 32632] [error] [1707480147466901000-Global] Dimension: Tile extent check failed on dimension 'd5'; Tile extent must not be 0
1: [2024-02-09 20:05:55.991] [Process: 32632] [error] [1707480147466901000-Global] Dimension: Tile extent check failed on dimension 'd6'; Tile extent -1 exceeds range on dimension domain [0, 10]
1: 0.007 s: C API: Test array schema with invalid dimension domain and tile extent
1: [2024-02-09 20:05:55.995] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Dimension] Error: Domain check failed; domain contains NaN
1: [2024-02-09 20:05:55.995] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Dimension] Error: Domain check failed; domain contains NaN
1: [2024-02-09 20:05:55.995] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Dimension] Error: Domain check failed; domain contains NaN
1: [2024-02-09 20:05:55.995] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Dimension] Error: Domain check failed; domain contains NaN
1: 0.004 s: C API: Test NAN and INF in dimensions
1: 0.004 s: C API: Test setting null extent to domain range
1: 0.000 s: - No serialization
1: 0.015 s: C API: Test array schema offsets/coords filter lists
1: 0.000 s: - Serialization
1: 0.016 s: C API: Test array schema offsets/coords filter lists
1: 0.000 s: - No serialization
1: [2024-02-09 20:05:56.045] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::IO] Error: Cannot read from file; Read exceeds file size
1: [2024-02-09 20:05:56.045] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: [TileDB::IO] Error: Cannot read from file; Read exceeds file size
1: [2024-02-09 20:05:56.045] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: [TileDB::IO] Error: Cannot read from file; Read exceeds file size
1: [2024-02-09 20:05:56.045] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: [TileDB::IO] Error: Cannot read from file; Read exceeds file size
1: 0.018 s: C API: Test array schema load error condition
1: 0.000 s: - Serialization
1: [2024-02-09 20:05:56.061] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::IO] Error: Cannot read from file; Read exceeds file size
1: [2024-02-09 20:05:56.062] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: [TileDB::IO] Error: Cannot read from file; Read exceeds file size
1: [2024-02-09 20:05:56.062] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: [TileDB::IO] Error: Cannot read from file; Read exceeds file size
1: [2024-02-09 20:05:56.062] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: [TileDB::ArrayDirectory] Error: [TileDB::IO] Error: Cannot read from file; Read exceeds file size
1: 0.017 s: C API: Test array schema load error condition
1: 0.000 s: - No serialization
1: 0.012 s: C API: Test array schema datetimes
1: 0.000 s: - Serialization
1: 0.010 s: C API: Test array schema datetimes
1: 0.000 s: - No serialization
1: [2024-02-09 20:05:56.090] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArraySchema] Error: Dense arrays cannot allow coordinate duplicates
1: [2024-02-09 20:05:56.091] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArraySchema] Error: Dense arrays cannot allow coordinate duplicates
1: 0.013 s: C API: Test array schema setter/getter for allows_dups
1: 0.000 s: - Serialization
1: [2024-02-09 20:05:56.104] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArraySchema] Error: Dense arrays cannot allow coordinate duplicates
1: [2024-02-09 20:05:56.104] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArraySchema] Error: Dense arrays cannot allow coordinate duplicates
1: 0.018 s: C API: Test array schema setter/getter for allows_dups
1: 0.000 s: - No serialization
1: 0.013 s: C API: Test array schema setter/getter for version
1: 0.000 s: - Serialization
1: 0.016 s: C API: Test array schema setter/getter for version
1: 0.000 s: - No serialization
1: [2024-02-09 20:05:56.150] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Dimension] Error: Cannot set number of values per coordinate; Currently only one value per coordinate is supported
1: [2024-02-09 20:05:56.151] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Dimension] Error: Cannot set number of values per coordinate; Currently only one value per coordinate is supported
1: 0.014 s: C API: Test array schema setter/getter for dimension filters and cell val num
1: 0.000 s: - Serialization
1: [2024-02-09 20:05:56.165] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Dimension] Error: Cannot set number of values per coordinate; Currently only one value per coordinate is supported
1: [2024-02-09 20:05:56.165] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Dimension] Error: Cannot set number of values per coordinate; Currently only one value per coordinate is supported
1: 0.014 s: C API: Test array schema setter/getter for dimension filters and cell val num
1: [2024-02-09 20:05:56.179] [Process: 32632] [error] [1707480147466901000-Global] Filter: Filter DOUBLE_DELTA does not accept input type FLOAT32
1: [2024-02-09 20:05:56.179] [Process: 32632] [error] [1707480147466901000-Global] Filter: Filter DOUBLE_DELTA does not accept input type FLOAT64
1: 0.005 s: C API: Test array schema, set filter errors
1: [2024-02-09 20:05:56.183] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArraySchema] Error: Cannot set domain; In dense arrays, all dimensions must have the same datatype
1: [2024-02-09 20:05:56.183] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArraySchema] Error: Cannot set domain; In dense arrays, all dimensions must have the same datatype
1: 0.008 s: C API: Test array schema, setting heterogeneous dimensions to dense array error
1: 0.000 s: - No serialization
1: [2024-02-09 20:05:56.197] [Process: 32632] [error] [1707480147466901000-Global] C API: Cannot get domain type; Not applicable to heterogeneous dimensions
1: [2024-02-09 20:05:56.202] [Process: 32632] [error] [1707480147415969000-Context: 1128] Cannot get non-empty domain; Function non-applicable to arrays with heterogenous dimensions
1: [2024-02-09 20:05:56.202] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::StorageManager] Error: Cannot get non-empty domain; Function non-applicable to arrays with heterogenous dimensions
1: [2024-02-09 20:05:56.204] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Subarray] Error: Cannot set subarray; Function not applicable to heterogeneous domains
1: [2024-02-09 20:05:56.204] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Subarray] Error: Cannot set subarray; Function not applicable to heterogeneous domains
1: [2024-02-09 20:05:56.204] [Process: 32632] [error] [1707480147415969000-Context: 1128] [Query: 6038] Cannot set buffer; buff buffer is null
1: [2024-02-09 20:05:56.204] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Query] Error: Cannot set buffer; buff buffer is null
1: 0.020 s: C API: Test array schema, setting heterogeneous dimensions to sparse array
1: 0.000 s: - Serialization
1: [2024-02-09 20:05:56.218] [Process: 32632] [error] [1707480147466901000-Global] C API: Cannot get domain type; Not applicable to heterogeneous dimensions
1: [2024-02-09 20:05:56.228] [Process: 32632] [error] [1707480147415969000-Context: 1129] Cannot get non-empty domain; Function non-applicable to arrays with heterogenous dimensions
1: [2024-02-09 20:05:56.228] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::StorageManager] Error: Cannot get non-empty domain; Function non-applicable to arrays with heterogenous dimensions
1: [2024-02-09 20:05:56.229] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Subarray] Error: Cannot set subarray; Function not applicable to heterogeneous domains
1: [2024-02-09 20:05:56.229] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Subarray] Error: Cannot set subarray; Function not applicable to heterogeneous domains
1: [2024-02-09 20:05:56.229] [Process: 32632] [error] [1707480147415969000-Context: 1129] [Query: 6039] Cannot set buffer; buff buffer is null
1: [2024-02-09 20:05:56.229] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Query] Error: Cannot set buffer; buff buffer is null
1: 0.025 s: C API: Test array schema, setting heterogeneous dimensions to sparse array
1: -------------------------------------------------------------------------------
1: C API: Test array schema attribute drop
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-array_schema.cc:2046
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-array_schema.cc:2163: FAILED:
1:   REQUIRE( attr_num == 1 )
1: with expansion:
1:   3 == 1
1: 
1: 0.000 s: C API: Test array schema attribute drop
1: [2024-02-09 20:05:56.263] [Process: 32632] [error] [1707480147466901000-Global] ArraySchemaEvolution: Cannot add attribute; Input attribute name is already there
1: -------------------------------------------------------------------------------
1: C API: Test array schema attribute drop and add
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-array_schema.cc:2187
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-array_schema.cc:2317: FAILED:
1:   CHECK_THAT( attr_name, Catch::Matchers::Equals("a2") )
1: with expansion:
1:   "a1" equals: "a2"
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-array_schema.cc:2326: FAILED:
1:   CHECK_THAT( attr_name1, Catch::Matchers::Equals("a3") )
1: with expansion:
1:   "a2" equals: "a3"
1: 
1: 0.026 s: C API: Test array schema attribute drop and add
1: 0.015 s: C API: Test v1.4.0 array schema attribute drop and add
1: 0.000 s: - No outside subarray
1: 0.171 s: C API: Test dense async
1: 0.000 s: - outside subarray
1: 0.128 s: C API: Test dense async
1: 0.000 s: - No outside subarray
1: 0.128 s: C API: Test sparse async
1: 0.000 s: - outside subarray
1: 0.135 s: C API: Test sparse async
1: 0.000 s: - No outside subarray
1: 0.138 s: C API: Test async cancellation
1: 0.000 s: - outside subarray
1: 0.127 s: C API: Test async cancellation
1: 0.000 s: no serialization
1: 2.848 s: C API: Test attributes with illegal filesystem characters in the name
1: 0.000 s: no serialization
1: 0.111 s: C API: Test attributes with tiledb_blob datatype
1: 0.000 s: no serialization
1: 0.113 s: C API: Test attributes with tiledb_bool datatype
1: [2024-02-09 20:06:00.200] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string 'xadf' to uint64_t; Invalid argument
1: [2024-02-09 20:06:00.200] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string 'xadf' to uint64_t; Invalid argument
1: [2024-02-09 20:06:00.200] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '10xadf' to uint64_t; Invalid argument
1: [2024-02-09 20:06:00.200] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '10xadf' to uint64_t; Invalid argument
1: [2024-02-09 20:06:00.200] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '-10' to uint64_t; Invalid argument
1: [2024-02-09 20:06:00.200] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '-10' to uint64_t; Invalid argument
1: [2024-02-09 20:06:00.201] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '100000000000000000000' to uint64_t; Value out of range
1: [2024-02-09 20:06:00.201] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '100000000000000000000' to uint64_t; Value out of range
1: [2024-02-09 20:06:00.203] [Process: 32632] [error] [1707480147466901000-Global] C API: Invalid TileDB error object
1: 0.010 s: C API: Test config
1: 0.018 s: C API: Test config iter
1: [2024-02-09 20:06:00.229] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Config] Error: Failed to open config file 'non_existent_file'
1: [2024-02-09 20:06:00.229] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Config] Error: Failed to open config file 'non_existent_file'
1: [2024-02-09 20:06:00.233] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Config] Error: Failed to parse config file 'test_config.txt'; Missing parameter value (line: 1)
1: [2024-02-09 20:06:00.233] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Config] Error: Failed to parse config file 'test_config.txt'; Missing parameter value (line: 1)
1: [2024-02-09 20:06:00.237] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Config] Error: Failed to parse config file 'test_config.txt'; Invalid line format (line: 3)
1: [2024-02-09 20:06:00.238] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Config] Error: Failed to parse config file 'test_config.txt'; Invalid line format (line: 3)
1: 0.025 s: C API: Test config from file
1: 0.001 s: C API: Test boolean config values are normalized
1: 0.004 s: C API: Test VFS config inheritance
1: [2024-02-09 20:06:00.256] [Process: 32632] [error] [1707480147466901000-Global] TileDB internal: Error initializing thread pool of concurrency level 512; Requested size too large
1: [2024-02-09 20:06:00.256] [Process: 32632] [error] [1707480147466901000-Global] C API: Invalid TileDB context object
1: [2024-02-09 20:06:00.257] [Process: 32632] [error] [1707480147466901000-Global] TileDB internal: Error initializing thread pool of concurrency level 512; Requested size too large
1: [2024-02-09 20:06:00.257] [Process: 32632] [error] [1707480147466901000-Global] C API: Invalid TileDB context object
1: [2024-02-09 20:06:00.257] [Process: 32632] [error] [1707480147415969000-Context: 1210] Config parameter "sm.num_reader_threads" has been removed; use config parameter "sm.compute_concurrency_level".
1: [2024-02-09 20:06:00.257] [Process: 32632] [error] [1707480147415969000-Context: 1210] Config parameter "sm.num_reader_threads" has been removed; use config parameter "sm.compute_concurrency_level".
1: [2024-02-09 20:06:00.260] [Process: 32632] [error] [1707480147466901000-Global] C API: Invalid TileDB error object
1: 0.009 s: C API: Test context
1: 0.335 s: - write full, subarray
1: 0.349 s: C API: Test consolidation, dense
1: 0.310 s: - write subarray, full
1: 0.324 s: C API: Test consolidation, dense
1: 0.354 s: - write (encrypted) subarray, full
1: 0.368 s: C API: Test consolidation, dense
1: -------------------------------------------------------------------------------
1: C API: Test consolidation, sparse
1:   - write full, unordered
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4656
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3559: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3560: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3561: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3562: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: 0.340 s: - write full, unordered
1: 0.355 s: C API: Test consolidation, sparse
1: -------------------------------------------------------------------------------
1: C API: Test consolidation, sparse
1:   - write unordered, full
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4663
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3672: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3674: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3675: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: 0.333 s: - write unordered, full
1: 0.348 s: C API: Test consolidation, sparse
1: -------------------------------------------------------------------------------
1: C API: Test consolidation, sparse
1:   - write (encrypted) unordered, full
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4672
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3672: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3674: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3675: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: 0.378 s: - write (encrypted) unordered, full
1: 0.397 s: C API: Test consolidation, sparse
1: [2024-02-09 20:06:02.630] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '-1' to uint32_t; Invalid argument
1: [2024-02-09 20:06:02.630] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '-1' to uint32_t; Invalid argument
1: [2024-02-09 20:06:02.630] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '1.5' to uint32_t; Invalid argument
1: [2024-02-09 20:06:02.630] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '1.5' to uint32_t; Invalid argument
1: [2024-02-09 20:06:02.630] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '-1' to uint64_t; Invalid argument
1: [2024-02-09 20:06:02.630] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '-1' to uint64_t; Invalid argument
1: [2024-02-09 20:06:02.630] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '1.5' to uint64_t; Invalid argument
1: [2024-02-09 20:06:02.630] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '1.5' to uint64_t; Invalid argument
1: [2024-02-09 20:06:02.630] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string to bool; Value not 'true' or 'false'
1: [2024-02-09 20:06:02.630] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string to bool; Value not 'true' or 'false'
1: [2024-02-09 20:06:02.630] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '-1' to uint32_t; Invalid argument
1: [2024-02-09 20:06:02.630] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '-1' to uint32_t; Invalid argument
1: [2024-02-09 20:06:02.630] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '1.5' to uint32_t; Invalid argument
1: [2024-02-09 20:06:02.630] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '1.5' to uint32_t; Invalid argument
1: [2024-02-09 20:06:02.630] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '-1' to uint32_t; Invalid argument
1: [2024-02-09 20:06:02.630] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '-1' to uint32_t; Invalid argument
1: [2024-02-09 20:06:02.631] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '1.5' to uint32_t; Invalid argument
1: [2024-02-09 20:06:02.631] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Utils] Error: Failed to convert string '1.5' to uint32_t; Invalid argument
1: [2024-02-09 20:06:02.631] [Process: 32632] [error] [1707480147415969000-Context: 1219] [Consolidator: 8] Invalid configuration; Minimum fragments config parameter is larger than the maximum
1: [2024-02-09 20:06:02.632] [Process: 32632] [error] [1707480147466901000-Global] TileDB internal: Invalid configuration; Minimum fragments config parameter is larger than the maximum
1: [2024-02-09 20:06:02.634] [Process: 32632] [error] [1707480147415969000-Context: 1219] [Consolidator: 9] Invalid configuration; Step size ratio config parameter must be in [0.0, 1.0]
1: [2024-02-09 20:06:02.634] [Process: 32632] [error] [1707480147466901000-Global] TileDB internal: Invalid configuration; Step size ratio config parameter must be in [0.0, 1.0]
1: [2024-02-09 20:06:02.635] [Process: 32632] [error] [1707480147415969000-Context: 1219] [Consolidator: 10] Invalid configuration; Step size ratio config parameter must be in [0.0, 1.0]
1: [2024-02-09 20:06:02.635] [Process: 32632] [error] [1707480147466901000-Global] TileDB internal: Invalid configuration; Step size ratio config parameter must be in [0.0, 1.0]
1: [2024-02-09 20:06:02.636] [Process: 32632] [error] [1707480147415969000-Context: 1219] [Consolidator: 11] Invalid configuration; Amplification config parameter must be non-negative
1: [2024-02-09 20:06:02.636] [Process: 32632] [error] [1707480147466901000-Global] TileDB internal: Invalid configuration; Amplification config parameter must be non-negative
1: 0.246 s: C API: Test advanced consolidation, wrong configs
1: 0.373 s: C API: Test advanced consolidation #1
1: 0.452 s: C API: Test advanced consolidation #2
1: 0.304 s: C API: Test advanced consolidation #3
1: 0.429 s: C API: Test advanced consolidation #4
1: 0.485 s: C API: Test advanced consolidation #5
1: 0.560 s: C API: Test advanced consolidation #6
1: 0.368 s: C API: Test advanced consolidation #7
1: 0.386 s: C API: Test advanced consolidation #8
1: 0.373 s: C API: Test consolidation, fragments that don't coincide with space tiles #1
1: 0.389 s: C API: Test consolidation, fragments that don't coincide with space tiles #2
1: 2.630 s: C API: Test advanced consolidation, small buffer size
1: 0.568 s: C API: Test advanced consolidation, encrypted array
1: 0.291 s: C API: Test advanced consolidation, overwritten fragments, no deletion
1: -------------------------------------------------------------------------------
1: C API: Test advanced consolidation, overwritten fragments, deletion #1
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:5715
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   1201 (0x4b1) == 200
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   1202 (0x4b2) == 201
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   1203 (0x4b3) == 202
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   -2147483648 == 203
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   -2147483648 == 204
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   -2147483648 == 205
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   -2147483648 == 206
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   -2147483648 == 207
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   -2147483648 == 208
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   -2147483648 == 209
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   1211 (0x4bb) == 210
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   1212 (0x4bc) == 211
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   1213 (0x4bd) == 212
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   1201 (0x4b1) == 200
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   1202 (0x4b2) == 201
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   1203 (0x4b3) == 202
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   -2147483648 == 203
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   -2147483648 == 204
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   -2147483648 == 205
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   -2147483648 == 206
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   -2147483648 == 207
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   -2147483648 == 208
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   -2147483648 == 209
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   1211 (0x4bb) == 210
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   1212 (0x4bc) == 211
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:2926: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   1213 (0x4bd) == 212
1: 
1: 0.486 s: C API: Test advanced consolidation, overwritten fragments, deletion #1
1: 0.390 s: C API: Test advanced consolidation, overwritten fragments, deletion #2
1: -------------------------------------------------------------------------------
1: C API: Test advanced consolidation, overwritten fragments, deletion #3
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:5836
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3067: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   10210 (0x27e2) == 1211 (0x4bb)
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3067: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   10211 (0x27e3) == 1212 (0x4bc)
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3067: FAILED:
1:   CHECK( a[i] == c_a[i] )
1: with expansion:
1:   10212 (0x27e4) == 1213 (0x4bd)
1: 
1: 0.379 s: C API: Test advanced consolidation, overwritten fragments, deletion #3
1: 0.200 s: C API: Test advanced consolidation, non-consolidatable
1: 0.000 s: - should consolidate
1: 0.285 s: C API: Test advanced consolidation, consolidatable
1: 0.000 s: - should not consolidate
1: 0.201 s: C API: Test advanced consolidation, consolidatable
1: 0.488 s: C API: Test consolidation and time traveling
1: [2024-02-09 20:06:13.928] [Process: 32632] [error] [1707480147466901000-Global] TileDB internal: Cannot consolidate; invalid configuration mode
1: [2024-02-09 20:06:14.255] [Process: 32632] [error] [1707480147466901000-Global] TileDB internal: Cannot consolidate; invalid configuration mode
1: 1.584 s: C API: Test consolidating fragment metadata
1: -------------------------------------------------------------------------------
1: C API: Test consolidation, sparse heterogeneous
1:   - write full, unordered
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6278
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3902: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3903: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3904: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3905: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: 0.330 s: - write full, unordered
1: 0.346 s: C API: Test consolidation, sparse heterogeneous
1: -------------------------------------------------------------------------------
1: C API: Test consolidation, sparse heterogeneous
1:   - write unordered, full
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6285
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4015: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4017: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4018: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: 0.328 s: - write unordered, full
1: 0.345 s: C API: Test consolidation, sparse heterogeneous
1: [2024-02-09 20:06:15.303] [Process: 32632] [error] [1707480147466901000-Global] C API: Invalid TileDB configuration object
1: -------------------------------------------------------------------------------
1: C API: Test consolidation, sparse heterogeneous
1:   - write (encrypted) unordered, full
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6294
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4015: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4017: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4018: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: 0.367 s: - write (encrypted) unordered, full
1: 0.388 s: C API: Test consolidation, sparse heterogeneous
1: -------------------------------------------------------------------------------
1: C API: Test consolidation, sparse string
1:   - write full, unordered
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6323
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4135: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4136: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4137: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4138: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: 0.335 s: - write full, unordered
1: 0.360 s: C API: Test consolidation, sparse string
1: -------------------------------------------------------------------------------
1: C API: Test consolidation, sparse string
1:   - write unordered, full
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6330
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4260: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4261: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4262: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4263: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: 0.369 s: - write unordered, full
1: 0.399 s: C API: Test consolidation, sparse string
1: [2024-02-09 20:06:16.462] [Process: 32632] [error] [1707480147466901000-Global] C API: Invalid TileDB configuration object
1: -------------------------------------------------------------------------------
1: C API: Test consolidation, sparse string
1:   - write (encrypted) unordered, full
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6339
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4260: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4261: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4262: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:4263: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: 0.382 s: - write (encrypted) unordered, full
1: 0.402 s: C API: Test consolidation, sparse string
1: 0.381 s: C API: Test consolidating fragment metadata, sparse string
1: 0.280 s: C API: Test consolidating fragment metadata, sparse string, pass only context
1: -------------------------------------------------------------------------------
1: C API: Test consolidation and timestamps
1:   - consolidate fragments with timestamps
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6520
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6528: FAILED:
1:   CHECK( get_num_fragments_to_vacuum_dense() == 2 )
1: with expansion:
1:   0 == 2
1: 
1: 0.241 s: - consolidate fragments with timestamps
1: 0.256 s: C API: Test consolidation and timestamps
1: 0.241 s: - consolidate fragments with timestamps, overlapping start
1: 0.255 s: C API: Test consolidation and timestamps
1: -------------------------------------------------------------------------------
1: C API: Test consolidation and timestamps
1:   - consolidate array metadata with timestamps
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6542
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6558: FAILED:
1:   CHECK( array_meta_files.size() == 4 )
1: with expansion:
1:   3 == 4
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6574: FAILED:
1:   CHECK( std::count(vac_file.begin(), vac_file.end(), '\n') == 2 )
1: with expansion:
1:   0 == 2
1: 
1: 0.039 s: - consolidate array metadata with timestamps
1: 0.051 s: C API: Test consolidation and timestamps
1: -------------------------------------------------------------------------------
1: C API: Test vacuuming and timestamps
1:   - vacuum fragments with timestamps
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6599
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6614: FAILED:
1:   CHECK( get_num_fragments_to_vacuum_dense() == 4 )
1: with expansion:
1:   0 == 4
1: 
1: 0.414 s: - vacuum fragments with timestamps
1: 0.430 s: C API: Test vacuuming and timestamps
1: -------------------------------------------------------------------------------
1: C API: Test vacuuming and timestamps
1:   - vacuum array metadata with timestamps
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6620
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6642: FAILED:
1:   CHECK( array_meta_files.size() == 7 )
1: with expansion:
1:   5 == 7
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6649: FAILED:
1:   CHECK( array_meta_files.size() == 3 )
1: with expansion:
1:   5 == 3
1: 
1: 0.064 s: - vacuum array metadata with timestamps
1: 0.075 s: C API: Test vacuuming and timestamps
1: 0.512 s: - write full, subarray
1: 0.525 s: C API: Test consolidation, dense, commits
1: 0.557 s: - write subarray, full
1: 0.582 s: C API: Test consolidation, dense, commits
1: 0.715 s: - write (encrypted) subarray, full
1: 0.734 s: C API: Test consolidation, dense, commits
1: -------------------------------------------------------------------------------
1: C API: Test consolidation, sparse, commits
1:   - write full, unordered
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6813
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3559: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3560: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3561: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3562: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3559: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3560: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3561: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3562: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3559: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3560: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3561: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3562: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3559: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3560: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3561: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3562: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3559: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3560: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3561: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3562: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3559: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3560: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3561: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3562: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3559: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3560: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3561: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3562: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: 0.588 s: - write full, unordered
1: 0.600 s: C API: Test consolidation, sparse, commits
1: -------------------------------------------------------------------------------
1: C API: Test consolidation, sparse, commits
1:   - write unordered, full
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6853
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3672: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3674: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3675: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3672: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3674: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3675: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3672: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3674: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3675: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: 0.556 s: - write unordered, full
1: 0.569 s: C API: Test consolidation, sparse, commits
1: -------------------------------------------------------------------------------
1: C API: Test consolidation, sparse, commits
1:   - write (encrypted) unordered, full
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6895
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3672: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3674: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3675: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3672: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3674: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3675: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3672: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3674: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3675: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: 0.641 s: - write (encrypted) unordered, full
1: 0.654 s: C API: Test consolidation, sparse, commits
1: -------------------------------------------------------------------------------
1: C API: Test consolidation, sparse, commits, mixed versions
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:6946
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3559: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3560: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3561: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3562: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3559: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3560: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3561: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3562: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3559: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3560: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3561: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3562: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3559: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3560: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3561: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3562: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3559: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3560: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3561: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3562: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3559: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3560: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3561: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3562: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3559: FAILED:
1:   CHECK( !memcmp(buffer_a1, c_buffer_a1, sizeof(c_buffer_a1)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3560: FAILED:
1:   CHECK( !memcmp(buffer_a2_off, c_buffer_a2_off, sizeof(c_buffer_a2_off)) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3561: FAILED:
1:   CHECK( !memcmp(buffer_a2_val, c_buffer_a2_val, sizeof(c_buffer_a2_val) - 1) )
1: with expansion:
1:   false
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-consolidation.cc:3562: FAILED:
1:   CHECK( !memcmp(buffer_a3, c_buffer_a3, sizeof(c_buffer_a3)) )
1: with expansion:
1:   false
1: 
1: 0.617 s: C API: Test consolidation, sparse, commits, mixed versions
1: 0.520 s: C API: Test consolidation, dense split fragments
1: 0.636 s: C API: Test consolidation, sparse split fragments
1: 0.017 s: C API: Test consolidation, empty array
1: 0.019 s: C API: Test consolidation, empty array
1: 0.024 s: C API: Test consolidation, empty array
1: 0.027 s: C API: Test consolidation, empty array
1: 0.018 s: C API: Test consolidation, empty array
1: 0.018 s: C API: Test consolidation, empty array
1: 0.026 s: C API: Test consolidation, empty array
1: 0.025 s: C API: Test consolidation, empty array
1: [2024-02-09 20:06:24.066] [Process: 32632] [error] [1707480147466901000-Global] FragmentConsolidator: Consolidation read 0 cells, no progress can be made
1: 0.222 s: C API: Test consolidation, sparse string, no progress
1: 0.000 s: - No serialization
1: [2024-02-09 20:06:27.315] [Process: 32632] [error] [1707480147415969000-Context: 1279] [Query: 6559] [Subarray: 49873] Cannot add range to dimension 'x'; Range [-1, 5] is out of domain bounds [0, 2499]
1: [2024-02-09 20:06:27.315] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Subarray] Error: Cannot add range to dimension 'x'; Range [-1, 5] is out of domain bounds [0, 2499]
1: [2024-02-09 20:06:27.315] [Process: 32632] [error] [1707480147415969000-Context: 1279] [Query: 6559] [Subarray: 49873] Cannot add range to dimension 'x'; Range [0, 5000000] is out of domain bounds [0, 2499]
1: [2024-02-09 20:06:27.315] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Subarray] Error: Cannot add range to dimension 'x'; Range [0, 5000000] is out of domain bounds [0, 2499]
1: [2024-02-09 20:06:27.315] [Process: 32632] [error] [1707480147415969000-Context: 1279] [Query: 6559] [Subarray: 49873] Cannot add range to dimension 'y'; Range [-1, 10] is out of domain bounds [0, 4999]
1: [2024-02-09 20:06:27.316] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Subarray] Error: Cannot add range to dimension 'y'; Range [-1, 10] is out of domain bounds [0, 4999]
1: [2024-02-09 20:06:27.316] [Process: 32632] [error] [1707480147415969000-Context: 1279] [Query: 6559] [Subarray: 49873] Cannot add range to dimension 'y'; Range [10, 100000000] is out of domain bounds [0, 4999]
1: [2024-02-09 20:06:27.316] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Subarray] Error: Cannot add range to dimension 'y'; Range [10, 100000000] is out of domain bounds [0, 4999]
1: 3.254 s: C API: Test dense array, sorted reads
1: 0.000 s: - No serialization
1: [2024-02-09 20:06:27.341] [Process: 32632] [error] [1707480147415969000-Context: 1280] [Query: 6560] [Writer: 2281] Failed to finalize global write state; Number of cells written (3) is different from the number of cells expected (10000) for the query subarray
1: [2024-02-09 20:06:27.341] [Process: 32632] [error] [1707480147466901000-Global] TileDB internal: [GlobalOrderWriter::dowork]  ([TileDB::Writer] Error: Failed to finalize global write state; Number of cells written (3) is different from the number of cells expected (10000) for the query subarray)
1: [2024-02-09 20:06:27.343] [Process: 32632] [error] [1707480147466901000-Global] WriterBase: Buffer sizes check failed; Invalid number of cells given for attribute 'a' (3 != 10000)
1: 0.021 s: C API: Test dense array, invalid number of cells in dense writes
1: 0.000 s: - No serialization
1: 0.768 s: C API: Test dense array, sorted writes
1: 0.000 s: - No serialization
1: 0.352 s: C API: Test dense array, simultaneous writes
1: 0.000 s: - No serialization nor outside subarray
1: 0.530 s: C API: Test dense array, cancel and retry writes
1: 0.000 s: - no serialization, with outside subarray
1: 0.566 s: C API: Test dense array, cancel and retry writes
1: 0.000 s: -- zipped coordinates
1: 0.000 s: - No serialization
1: 0.253 s: C API: Test dense array, return coordinates
1: 0.000 s: -- split coordinates
1: 0.000 s: - No serialization
1: 0.232 s: C API: Test dense array, return coordinates
1: 0.000 s: - No serialization
1: [2024-02-09 20:06:30.146] [Process: 32632] [error] [1707480147415969000-Context: 1287] Cannot get non-empty domain; Invalid dimension index
1: [2024-02-09 20:06:30.146] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::StorageManager] Error: Cannot get non-empty domain; Invalid dimension index
1: [2024-02-09 20:06:30.146] [Process: 32632] [error] [1707480147415969000-Context: 1287] Cannot get non-empty domain; Dimension name 'foo' does not exist
1: [2024-02-09 20:06:30.146] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::StorageManager] Error: Cannot get non-empty domain; Dimension name 'foo' does not exist
1: 0.103 s: C API: Test dense array, non-empty domain
1: 0.000 s: - No serialization
1: [2024-02-09 20:06:30.251] [Process: 32632] [error] [1707480147415969000-Context: 1288] [Query: 6612] Cannot set buffer; Invalid attribute/dimension/label 'foo'
1: [2024-02-09 20:06:30.251] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Query] Error: Cannot set buffer; Invalid attribute/dimension/label 'foo'
1: [2024-02-09 20:06:30.251] [Process: 32632] [error] [1707480147415969000-Context: 1288] [Query: 6612] Cannot set buffer; Invalid attribute/dimension/label 'foo'
1: [2024-02-09 20:06:30.251] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Query] Error: Cannot set buffer; Invalid attribute/dimension/label 'foo'
1: [2024-02-09 20:06:30.251] [Process: 32632] [error] [1707480147415969000-Context: 1288] [Query: 6612] Cannot set buffer; Invalid buffer name 'foo' (it should be an attribute, dimension, or dimension label)
1: [2024-02-09 20:06:30.251] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Query] Error: Cannot set buffer; Invalid buffer name 'foo' (it should be an attribute, dimension, or dimension label)
1: [2024-02-09 20:06:30.251] [Process: 32632] [error] [1707480147415969000-Context: 1288] [Query: 6612] Cannot set buffer; Input attribute/dimension 'a1' is fixed-sized
1: [2024-02-09 20:06:30.251] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Query] Error: Cannot set buffer; Input attribute/dimension 'a1' is fixed-sized
1: [2024-02-09 20:06:30.252] [Process: 32632] [error] [1707480147466901000-Global] DenseReader: Cannot initialize dense reader; Buffers not set
1: [2024-02-09 20:06:30.273] [Process: 32632] [error] [1707480147415969000-Context: 1288] [Query: 6612] Cannot set buffer for new attribute/dimension 'a2' after initialization
1: [2024-02-09 20:06:30.273] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Query] Error: Cannot set buffer for new attribute/dimension 'a2' after initialization
1: [2024-02-09 20:06:30.273] [Process: 32632] [error] [1707480147415969000-Context: 1288] [Query: 6612] Cannot set buffer for new attribute/dimension 'a2' after initialization
1: [2024-02-09 20:06:30.273] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Query] Error: Cannot set buffer for new attribute/dimension 'a2' after initialization
1: 0.128 s: C API: Test dense array, invalid set query buffer
1: [2024-02-09 20:06:30.289] [Process: 32632] [error] [1707480147466901000-Global] Error: Cannot create query; Input array is not open
1: [2024-02-09 20:06:30.292] [Process: 32632] [error] [1707480147466901000-Global] Error: Cannot create query; Array query type does not match declared query type: (WRITE != READ)
1: [2024-02-09 20:06:30.292] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: Cannot open array; Array already open.
1: [2024-02-09 20:06:30.292] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: Cannot open array; Array already open.
1: [2024-02-09 20:06:30.292] [Process: 32632] [error] [1707480147415969000-Context: 1289] Cannot get non-empty domain; Array not opened for reads
1: [2024-02-09 20:06:30.292] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::StorageManager] Error: Cannot get non-empty domain; Array not opened for reads
1: [2024-02-09 20:06:30.292] [Process: 32632] [error] [1707480147415969000-Context: 1289] Cannot get non-empty domain; Array not opened for reads
1: [2024-02-09 20:06:30.293] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::StorageManager] Error: Cannot get non-empty domain; Array not opened for reads
1: [2024-02-09 20:06:30.293] [Process: 32632] [error] [1707480147415969000-Context: 1289] Cannot get non-empty domain; Array not opened for reads
1: [2024-02-09 20:06:30.293] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::StorageManager] Error: Cannot get non-empty domain; Array not opened for reads
1: [2024-02-09 20:06:30.299] [Process: 32632] [error] [1707480147466901000-Global] Query: Cannot init query; Associated array query type does not match query type: (READ != WRITE)
1: [2024-02-09 20:06:30.299] [Process: 32632] [error] [1707480147466901000-Global] Query: Cannot init query; The associated array is not open
1: 0.023 s: C API: Test dense array, open array checks
1: [2024-02-09 20:06:30.400] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: Cannot reopen array; Array is not open
1: [2024-02-09 20:06:30.400] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: Cannot reopen array; Array is not open
1: -------------------------------------------------------------------------------
1: C API: Test dense array, reopen array checks
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-dense_array.cc:3483
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-dense_array.cc:3543: FAILED:
1:   CHECK( a1_buffer[0] == 13 )
1: with expansion:
1:   1 == 13
1: 
1: [2024-02-09 20:06:30.513] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: Cannot reopen array; Array was not opened in read mode
1: [2024-02-09 20:06:30.513] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Array] Error: Cannot reopen array; Array was not opened in read mode
1: 0.215 s: C API: Test dense array, reopen array checks
1: 0.000 s: - No serialization
1: 0.121 s: C API: Test dense array, URI ending in a slash
1: 0.000 s: - No serialization
1: [2024-02-09 20:06:30.650] [Process: 32632] [error] [1707480147415969000-Context: 1292] [Query: 6620] Writes expect all attributes (and coordinates in the sparse/unordered case) to be set
1: [2024-02-09 20:06:30.651] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Query] Error: Writes expect all attributes (and coordinates in the sparse/unordered case) to be set
1: 0.015 s: C API: Test dense array, missing attributes in writes
1: 0.000 s: - No serialization
1: 0.082 s: C API: Test dense array, read subarrays with empty cells
1: 0.000 s: - No serialization
1: 0.086 s: C API: Test dense array, read subarrays with empty areas, merging adjacent cell ranges
1: 0.000 s: - No serialization
1: 0.163 s: C API: Test dense array, multi-fragment reads
1: 0.000 s: - No serialization
1: 0.015 s: C API: Test dense array, check if open
1: 0.000 s: - No serialization
1: 0.015 s: C API: Test dense array, get schema from opened array
1: 0.000 s: - No serialization
1: 0.194 s: C API: Test dense array, read in col-major after updates
1: [2024-02-09 20:06:38.229] [Process: 32632] [error] [1707480147415969000-Context: 1300] [Query: 6643] [Subarray: 50496] Cannot add range to dimension 'x'; Range [-1, 5] is out of domain bounds [0, 2499]
1: [2024-02-09 20:06:38.229] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Subarray] Error: Cannot add range to dimension 'x'; Range [-1, 5] is out of domain bounds [0, 2499]
1: [2024-02-09 20:06:38.229] [Process: 32632] [error] [1707480147415969000-Context: 1300] [Query: 6643] [Subarray: 50496] Cannot add range to dimension 'x'; Range [0, 5000000] is out of domain bounds [0, 2499]
1: [2024-02-09 20:06:38.229] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Subarray] Error: Cannot add range to dimension 'x'; Range [0, 5000000] is out of domain bounds [0, 2499]
1: [2024-02-09 20:06:38.229] [Process: 32632] [error] [1707480147415969000-Context: 1300] [Query: 6643] [Subarray: 50496] Cannot add range to dimension 'y'; Range [-1, 10] is out of domain bounds [0, 4999]
1: [2024-02-09 20:06:38.229] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Subarray] Error: Cannot add range to dimension 'y'; Range [-1, 10] is out of domain bounds [0, 4999]
1: [2024-02-09 20:06:38.229] [Process: 32632] [error] [1707480147415969000-Context: 1300] [Query: 6643] [Subarray: 50496] Cannot add range to dimension 'y'; Range [10, 100000000] is out of domain bounds [0, 4999]
1: [2024-02-09 20:06:38.229] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Subarray] Error: Cannot add range to dimension 'y'; Range [10, 100000000] is out of domain bounds [0, 4999]
1: 7.031 s: C API: Test dense array, encrypted
1: 0.000 s: - No serialization
1: 0.210 s: C API: Test dense array, splitting to unary ranges
1: 0.000 s: - No serialization
1: 0.112 s: C API: Test dense array, subarray default dim
1: 0.000 s: - No serialization
1: 0.167 s: C API: Test dense array, overlapping fragments, same tile, cell order change
1: 0.101 s: C API: Test dense array, simple multi-index
1: 0.096 s: C API: Test dense array, simple multi-index
1: 0.112 s: C API: Test dense array, complex multi-index
1: 0.113 s: C API: Test dense array, complex multi-index
1: 0.100 s: C API: Test dense array, multi-index, cross tile boundary
1: 0.097 s: C API: Test dense array, multi-index, cross tile boundary
1: 0.098 s: C API: Test dense array, multi-index, out of order ranges
1: 0.096 s: C API: Test dense array, multi-index, out of order ranges
1: 0.093 s: C API: Test dense array, multi-index, out of order ranges, coalesce
1: 0.092 s: C API: Test dense array, multi-index, out of order ranges, coalesce
1: 0.053 s: C API: Test dense array write without setting layout
1: 0.097 s: Dense array: 1D, full read
1: 0.000 s: - subarray: row
1: 0.114 s: Dense array: 2D, full read
1: 0.000 s: - subarray: col
1: 0.129 s: Dense array: 2D, full read
1: 0.000 s: - subarray: global
1: 0.121 s: Dense array: 2D, full read
1: [2024-02-09 20:06:40.338] [Process: 32632] [error] [1707480147466901000-Global] ReaderBase: Cannot initialize reader; Multi-range reads are not supported on a global order query.
1: 0.100 s: Dense array: 2D, error, multi-range global reads
1: 0.000 s: - No serialization
1: 0.067 s: C API: Test 1d dense vector with negative domain
1: 0.000 s: - No serialization
1: 0.231 s: C API: Test 2d dense array with negative domain
1: 0.137 s: C API: Test 1d dense vector
1: 0.135 s: C API: Test 1d dense vector with anonymous attribute
1: 0.054 s: C API: Test 1d dense vector cell/tile layout
1: 0.192 s: C API: Test 1d dense vector, update
1: 0.000 s: C API: Test enum values
1: 0.001 s: C API: Test enum string conversion
1: [2024-02-09 20:06:41.161] [Process: 32632] [error] [1707480147466901000-Global] C API: Invalid TileDB attribute object
1: 0.002 s: C API: Test invalid attribute for tiledb_attribute_set_enumeration_name
1: [2024-02-09 20:06:41.163] [Process: 32632] [error] [1707480147466901000-Global] C API: Invalid TileDB attribute object
1: 0.002 s: C API: Test invalid attribute for tiledb_attribute_get_enumeration_name
1: [2024-02-09 20:06:41.166] [Process: 32632] [error] [1707480147466901000-Global] Error: Invalid TileDB array schema object
1: 0.003 s: C API: Test invalid array schema for tiledb_array_schema_add_enumeration
1: [2024-02-09 20:06:41.168] [Process: 32632] [error] [1707480147466901000-Global] Error: Invalid TileDB array object
1: 0.002 s: C API: Test invalid array for tiledb_array_get_enumeration
1: [2024-02-09 20:06:41.170] [Process: 32632] [error] [1707480147466901000-Global] C API: 'attr_name' must not be null
1: 0.002 s: C API: Test invalid enumeration name for tiledb_array_get_enumeration
1: [2024-02-09 20:06:41.172] [Process: 32632] [error] [1707480147466901000-Global] C API: argument `group_uri` may not be nullptr
1: 0.003 s: C API: Test error and error message
1: [2024-02-09 20:06:41.257] [Process: 32632] [error] [1707480147466901000-Global] Error: Filestore size key not found in array metadata; this filestore may not have been imported: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/tiledb_test//test_filestore_non_imported_array
1: 0.088 s: C API: Test schema create from uri
1: 0.000 s: - Uncompressed file
1: 0.009 s: C API: Test schema create detects compression
1: 0.000 s: - Compressed file
1: 0.009 s: C API: Test schema create detects compression
1: 0.000 s: - Fake gz extension file
1: 0.009 s: C API: Test schema create detects compression
1: 0.343 s: C API: Test importing from uri
1: [2024-02-09 20:06:42.531] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::IO] Error: Cannot open file '/dir/not/exists/hello.txt'; No such file or directory
1: [2024-02-09 20:06:42.550] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::IO] Error: Cannot open file '/dir/not/exists/hello.txt'; No such file or directory
1: 0.924 s: C API: Test exporting to uri
1: 0.077 s: C API: Test importing from a buffer
1: 0.104 s: C API: Test exporting to a buffer
1: [2024-02-09 20:06:42.736] [Process: 32632] [error] [1707480147466901000-Global] Attribute: Cannot set fill value; Input value cannot be null
1: [2024-02-09 20:06:42.736] [Process: 32632] [error] [1707480147466901000-Global] Attribute: Cannot set fill value; Input size cannot be 0
1: [2024-02-09 20:06:42.736] [Process: 32632] [error] [1707480147466901000-Global] Attribute: Cannot set fill value; Input size is not the same as cell size
1: [2024-02-09 20:06:42.748] [Process: 32632] [error] [1707480147466901000-Global] Attribute: Cannot set fill value; Attribute is not nullable
1: [2024-02-09 20:06:42.749] [Process: 32632] [error] [1707480147466901000-Global] Attribute: Cannot get fill value; Attribute is not nullable
1: 0.088 s: C API: Test fill values, basic errors
1: [2024-02-09 20:06:42.824] [Process: 32632] [error] [1707480147466901000-Global] Attribute: Cannot set fill value; Input value cannot be null
1: [2024-02-09 20:06:42.824] [Process: 32632] [error] [1707480147466901000-Global] Attribute: Cannot set fill value; Input size cannot be 0
1: [2024-02-09 20:06:42.824] [Process: 32632] [error] [1707480147466901000-Global] Attribute: Cannot set fill value; Input size is not the same as cell size
1: [2024-02-09 20:06:42.840] [Process: 32632] [error] [1707480147466901000-Global] Attribute: Cannot set fill value; Attribute is nullable
1: [2024-02-09 20:06:42.840] [Process: 32632] [error] [1707480147466901000-Global] Attribute: Cannot get fill value; Attribute is nullable
1: 0.052 s: C API: Test fill values, basic errors, nullable
1: 0.002 s: C API: Test filter list on attribute
1: [2024-02-09 20:06:42.880] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: Cannot open array; Array does not exist.
1: [2024-02-09 20:06:42.880] [Process: 32632] [error] [1707480147466901000-Global] TileDB internal: Cannot open array; Array does not exist.
1: [2024-02-09 20:06:42.927] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with NO_ENCRYPTION but given key is for AES_256_GCM
1: [2024-02-09 20:06:42.927] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with NO_ENCRYPTION but given key is for AES_256_GCM
1: 0.000 s: no serialization
1: [2024-02-09 20:06:43.247] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get fragment URI; Invalid fragment index
1: [2024-02-09 20:06:43.247] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get fragment URI; Invalid fragment index
1: [2024-02-09 20:06:43.247] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain; Invalid dimension index
1: [2024-02-09 20:06:43.247] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain; Invalid dimension index
1: [2024-02-09 20:06:43.248] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain; Invalid dimension name 'foo'
1: [2024-02-09 20:06:43.248] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain; Invalid dimension name 'foo'
1: [2024-02-09 20:06:43.248] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain var size; Dimension is fixed sized
1: [2024-02-09 20:06:43.248] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain var size; Dimension is fixed sized
1: [2024-02-09 20:06:43.248] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain var size; Dimension is fixed sized
1: [2024-02-09 20:06:43.248] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain var size; Dimension is fixed sized
1: [2024-02-09 20:06:43.248] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain var; Dimension is fixed-sized
1: [2024-02-09 20:06:43.248] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain var; Dimension is fixed-sized
1: [2024-02-09 20:06:43.249] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain var; Dimension is fixed-sized
1: [2024-02-09 20:06:43.249] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain var; Dimension is fixed-sized
1: 0.377 s: C API: Test fragment info, errors
1: [2024-02-09 20:06:43.264] [Process: 32632] [error] [1707480147466901000-Global] C API: unknown exception type; no further information
1: -------------------------------------------------------------------------------
1: C API: Test fragment info, load and getters
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-fragment_info.cc:184
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-fragment_info.cc:457: FAILED:
1:   CHECK( schema_name_str.size() == 62 )
1: with expansion:
1:   76 == 62
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-fragment_info.cc:463: FAILED:
1:   CHECK( size == expected_fragment_size )
1: with expansion:
1:   3216 (0xc90) == 3202 (0xc82)
1: 
1: [2024-02-09 20:06:43.404] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get MBR; Fragment is not sparse
1: [2024-02-09 20:06:43.404] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get MBR; Fragment is not sparse
1: [2024-02-09 20:06:43.404] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get MBR; Fragment is not sparse
1: [2024-02-09 20:06:43.404] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get MBR; Fragment is not sparse
1: 0.157 s: C API: Test fragment info, load and getters
1: [2024-02-09 20:06:43.419] [Process: 32632] [error] [1707480147466901000-Global] C API: unknown exception type; no further information
1: [2024-02-09 20:06:43.422] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:06:43.423] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: GenericTileIO: Error reading generic tile; tile is encrypted with AES_256_GCM but given key is for NO_ENCRYPTION
1: [2024-02-09 20:06:43.426] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: [2024-02-09 20:06:43.426] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: [2024-02-09 20:06:43.427] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::ArrayDirectory] Error: [TileDB::Encryption] Error: OpenSSL error; error finalizing decryption.
1: [2024-02-09 20:06:43.431] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: [set_config] Cannot set config after load
1: -------------------------------------------------------------------------------
1: C API: Test fragment info, load and getters
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-fragment_info.cc:184
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-fragment_info.cc:457: FAILED:
1:   CHECK( schema_name_str.size() == 62 )
1: with expansion:
1:   76 == 62
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-fragment_info.cc:463: FAILED:
1:   CHECK( size == expected_fragment_size )
1: with expansion:
1:   5599 (0x15df) == 5585 (0x15d1)
1: 
1: [2024-02-09 20:06:43.578] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get MBR; Fragment is not sparse
1: [2024-02-09 20:06:43.578] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get MBR; Fragment is not sparse
1: [2024-02-09 20:06:43.578] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get MBR; Fragment is not sparse
1: [2024-02-09 20:06:43.578] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get MBR; Fragment is not sparse
1: 0.175 s: C API: Test fragment info, load and getters
1: 0.000 s: no serialization
1: [2024-02-09 20:06:43.780] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get fragment URI; Invalid fragment index
1: [2024-02-09 20:06:43.780] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get fragment URI; Invalid fragment index
1: 0.200 s: C API: Test MBR fragment info
1: 0.000 s: no serialization
1: [2024-02-09 20:06:43.844] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain; Dimension is variable-sized
1: [2024-02-09 20:06:43.844] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain; Dimension is variable-sized
1: [2024-02-09 20:06:43.844] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain; Dimension is variable-sized
1: [2024-02-09 20:06:43.844] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain; Dimension is variable-sized
1: [2024-02-09 20:06:43.844] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain var size; Invalid dimension index
1: [2024-02-09 20:06:43.844] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain var size; Invalid dimension index
1: [2024-02-09 20:06:43.845] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain var; Invalid dimension index
1: [2024-02-09 20:06:43.845] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain var; Invalid dimension index
1: [2024-02-09 20:06:43.845] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain var size; Invalid dimension name 'foo'
1: [2024-02-09 20:06:43.845] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain var size; Invalid dimension name 'foo'
1: [2024-02-09 20:06:43.845] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain var; Invalid dimension name 'foo'
1: [2024-02-09 20:06:43.845] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get non-empty domain var; Invalid dimension name 'foo'
1: 0.065 s: C API: Test fragment info, load from array with string dimension
1: 0.000 s: no serialization
1: [2024-02-09 20:06:43.944] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot check if fragment has consolidated metadata; Invalid fragment index
1: [2024-02-09 20:06:43.944] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot check if fragment has consolidated metadata; Invalid fragment index
1: [2024-02-09 20:06:44.014] [Process: 32632] [error] [1707480147466901000-Global] C API: Invalid TileDB error object
1: 0.164 s: C API: Test fragment info, consolidated fragment metadata
1: 0.000 s: no serialization
1: [2024-02-09 20:06:44.107] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get URI of fragment to vacuum; Invalid fragment index
1: [2024-02-09 20:06:44.107] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get URI of fragment to vacuum; Invalid fragment index
1: [2024-02-09 20:06:44.121] [Process: 32632] [error] [1707480147466901000-Global] TileDB internal: vector::_M_default_append
1: -------------------------------------------------------------------------------
1: C API: Test fragment info, to vacuum
1: -------------------------------------------------------------------------------
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-fragment_info.cc:1163
1: ...............................................................................
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-fragment_info.cc:1275: FAILED:
1:   CHECK( rc == (0) )
1: with expansion:
1:   -1 == 0
1: 
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-fragment_info.cc:1305: FAILED:
1:   CHECK( to_vacuum_num == 2 )
1: with expansion:
1:   0 == 2
1: 
1: [2024-02-09 20:06:44.129] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get URI of fragment to vacuum; Invalid fragment index
1: [2024-02-09 20:06:44.129] [Process: 32632] [error] [1707480147466901000-Global] [TileDB::FragmentInfo] Error: Cannot get URI of fragment to vacuum; Invalid fragment index
1: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/src/unit-capi-fragment_info.cc:1310: FAILED:
1:   CHECK( rc == (0) )
1: with expansion:
1:   -1 == 0
1: 
1/2 Test #1: tiledb_unit ......................Bus error***Exception: 260.05 sec
test 2
    Start 2: test_ci_asserts

2: Test command: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/build/tiledb/test/ci/test_assert
2: Working Directory: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/build/tiledb/test/ci
2: Test timeout computed to be: 10000000
2: Assert did not exit!
2: Randomness seeded to: 3388674007
2: retval is 0 (0x0) from /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/build/tiledb/test/ci/try_assert
2: 
2: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2: test_assert is a Catch2 v3.5.2 host application.
2: Run with -? for options
2: 
2: -------------------------------------------------------------------------------
2: CI: Test assertions configuration
2: -------------------------------------------------------------------------------
2: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/ci/test_assert.cc:51
2: ...............................................................................
2: 
2: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/TileDB-2.19.1/test/ci/test_assert.cc:59: FAILED:
2:   REQUIRE( std::find(assert_exit_codes.begin(), assert_exit_codes.end(), retval) != assert_exit_codes.end() )
2: with expansion:
2:   {?} != {?}
2: 
2: ===============================================================================
2: test cases: 1 | 1 failed
2: assertions: 1 | 1 failed
2: 
2/2 Test #2: test_ci_asserts ..................***Failed    0.10 sec

0% tests passed, 2 tests failed out of 2

Total Test time (real) = 260.20 sec

The following tests FAILED:
	  1 - tiledb_unit (Bus error)
	  2 - test_ci_asserts (Failed)
Errors while running CTest
Output from these tests are in: /opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/build/tiledb/test/Testing/Temporary/LastTest.log
Use "--rerun-failed --output-on-failure" to re-run the failed cases verbosely.
gmake[7]: *** [test/CMakeFiles/check.dir/build.make:70: test/CMakeFiles/check] Error 8
gmake[6]: *** [CMakeFiles/Makefile2:13906: test/CMakeFiles/check.dir/all] Error 2
gmake[5]: *** [CMakeFiles/Makefile2:13913: test/CMakeFiles/check.dir/rule] Error 2
gmake[4]: *** [Makefile:4300: check] Error 2
gmake[4]: Leaving directory '/opt/local/var/macports/build/_opt_SnowLeopardPorts_databases_tiledb/tiledb/work/build/tiledb'
make[3]: *** [CMakeFiles/check] Error 2
make[2]: *** [CMakeFiles/check.dir/all] Error 2
make[1]: *** [CMakeFiles/check.dir/rule] Error 2
make: *** [check] Error 2

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants