File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7081,8 +7081,11 @@ void unfinished_iteration_test(
70817081 auto tryReading = [&config, file, encoding](
70827082 Access access,
70837083 std::string const &additionalConfig = " {}" ) {
7084+ auto merged_config = json::merge (
7085+ json::merge (config, additionalConfig),
7086+ R"( {"verify_homogeneous_extents": false})" );
70847087 {
7085- Series read (file, access, json::merge (config, additionalConfig) );
7088+ Series read (file, access, merged_config );
70867089
70877090 std::vector<decltype (Series::iterations)::key_type> iterations;
70887091 std::cout << " Going to list iterations in " << file << " :"
@@ -7113,7 +7116,7 @@ void unfinished_iteration_test(
71137116 if (encoding == IterationEncoding::fileBased &&
71147117 access == Access::READ_ONLY)
71157118 {
7116- Series read (file, access, json::merge (config, additionalConfig) );
7119+ Series read (file, access, merged_config );
71177120 if (additionalConfig == " {}" )
71187121 {
71197122 // Eager parsing, defective iteration has already been removed
You can’t perform that action at this time.
0 commit comments