File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7072,8 +7072,11 @@ void unfinished_iteration_test(
70727072 auto tryReading = [&config, file, encoding](
70737073 Access access,
70747074 std::string const &additionalConfig = " {}" ) {
7075+ auto merged_config = json::merge (
7076+ json::merge (config, additionalConfig),
7077+ R"( {"verify_homogeneous_extents": false})" );
70757078 {
7076- Series read (file, access, json::merge (config, additionalConfig) );
7079+ Series read (file, access, merged_config );
70777080
70787081 std::vector<decltype (Series::iterations)::key_type> iterations;
70797082 std::cout << " Going to list iterations in " << file << " :"
@@ -7104,7 +7107,7 @@ void unfinished_iteration_test(
71047107 if (encoding == IterationEncoding::fileBased &&
71057108 access == Access::READ_ONLY)
71067109 {
7107- Series read (file, access, json::merge (config, additionalConfig) );
7110+ Series read (file, access, merged_config );
71087111 if (additionalConfig == " {}" )
71097112 {
71107113 // Eager parsing, defective iteration has already been removed
You can’t perform that action at this time.
0 commit comments