Iceberg Test Run Report

DateJul 02, 2026 17:29
Duration1h 19m
Framework TestFlows 2.0.250110.1002922

Artifacts

Test artifacts can be found at https://altinity-build-artifacts.s3.amazonaws.com/index.html#REFs/antalya-26.3/7c4787ee0a199114cd7d544d4fef980974625582/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
user.namestrtgbb
version26.3.13.20001.altinityantalya
package/home/ubuntu/_work/_temp/gh_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash42f77a8e05dc849fc17ee9b0be6d25ebfdcfe790
job.nameiceberg_1
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/28606023091
archaarch64
localTrue
clickhouse_versionNone
clickhouse_path/home/ubuntu/_work/_temp/gh_binary/clickhouse
as_binaryFalse
base_osNone
keeper_pathNone
zookeeper_versionNone
use_keeperFalse
stressFalse
collect_service_logsTrue
thread_fuzzerFalse
with_analyzerTrue
reuse_envFalse
cicdTrue
minio_uriSecret(name='minio_uri')
minio_root_userSecret(name='minio_root_user')
minio_root_passwordSecret(name='minio_root_password')

Summary

99%OK
1%Known

Statistics

Units OK Fail XFail
Modules
1
1
Features
43
43
Scenarios
489
480
9
Checks
340
340
Steps
55780
55698
16
66

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal columnXFail 2s 229ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 530, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 500, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 20, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 553, in feature
    Scenario(test=issue_with_decimal_column)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 459, in issue_with_decimal_column
    check_read_with_predicate_push_down(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 69, in check_read_with_predicate_push_down
    assert int(read_rows.output.strip()) == 0, error(
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  @TestStep(Then)
  def check_read_with_predicate_push_down(
      self, where_clause, database_name, namespace, table_name
  ):
      """Check that ClickHouse does not read any rows when predicate pushdown is enabled
      and the condition does not match any data.
      """
      with By("drop all caches"):
          common.drop_all_caches(node=self.context.node)

      with And("read with input_format_parquet_filter_push_down"):
          log_comment_with_pruning = f"with_pruning_{getuid()}"
          result = iceberg_engine.read_data_from_clickhouse_iceberg_table(
              database_name=database_name,
              namespace=namespace,
              table_name=table_name,
              where_clause=where_clause,
              input_format_parquet_filter_push_down="1",
              log_comment=log_comment_with_pruning,
              use_iceberg_metadata_files_cache="0",
              use_iceberg_partition_pruning="0",
              input_format_parquet_bloom_filter_push_down="0",
          )
          assert result.output.strip() == "", error()

      with And(f"check that 0 rows were read"):
          read_rows = metrics.get_read_rows(
              log_comment=log_comment_with_pruning,
          )
          assert int(read_rows.output.strip()) == 0, error(

Description
  Expected 0 rows to be read, with where clause: decimal < 0.5, but got 10

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py', line 69 in 'check_read_with_predicate_push_down'

61\|              input_format_parquet_bloom_filter_push_down="0",
62\|          )
63\|          assert result.output.strip() == "", error()
64\|  
65\|      with And(f"check that 0 rows were read"):
66\|          read_rows = metrics.get_read_rows(
67\|              log_comment=log_comment_with_pruning,
68\|          )
69\|>         assert int(read_rows.output.strip()) == 0, error(
70\|              f"Expected 0 rows to be read, with where clause: {where_clause}, but got {read_rows.output.strip()}"
71\|          )
72\|
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float columnXFail 2s 273ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 530, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 500, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 20, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 556, in feature
    Scenario(test=issue_with_float_column)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 529, in issue_with_float_column
    check_read_with_predicate_push_down(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 69, in check_read_with_predicate_push_down
    assert int(read_rows.output.strip()) == 0, error(
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  @TestStep(Then)
  def check_read_with_predicate_push_down(
      self, where_clause, database_name, namespace, table_name
  ):
      """Check that ClickHouse does not read any rows when predicate pushdown is enabled
      and the condition does not match any data.
      """
      with By("drop all caches"):
          common.drop_all_caches(node=self.context.node)

      with And("read with input_format_parquet_filter_push_down"):
          log_comment_with_pruning = f"with_pruning_{getuid()}"
          result = iceberg_engine.read_data_from_clickhouse_iceberg_table(
              database_name=database_name,
              namespace=namespace,
              table_name=table_name,
              where_clause=where_clause,
              input_format_parquet_filter_push_down="1",
              log_comment=log_comment_with_pruning,
              use_iceberg_metadata_files_cache="0",
              use_iceberg_partition_pruning="0",
              input_format_parquet_bloom_filter_push_down="0",
          )
          assert result.output.strip() == "", error()

      with And(f"check that 0 rows were read"):
          read_rows = metrics.get_read_rows(
              log_comment=log_comment_with_pruning,
          )
          assert int(read_rows.output.strip()) == 0, error(

Description
  Expected 0 rows to be read, with where clause: float < 0.5, but got 10

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py', line 69 in 'check_read_with_predicate_push_down'

61\|              input_format_parquet_bloom_filter_push_down="0",
62\|          )
63\|          assert result.output.strip() == "", error()
64\|  
65\|      with And(f"check that 0 rows were read"):
66\|          read_rows = metrics.get_read_rows(
67\|              log_comment=log_comment_with_pruning,
68\|          )
69\|>         assert int(read_rows.output.strip()) == 0, error(
70\|              f"Expected 0 rows to be read, with where clause: {where_clause}, but got {read_rows.output.strip()}"
71\|          )
72\|
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer typeXFail 4s 652ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 530, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 500, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 53, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py", line 717, in feature
    Scenario(test=check_iceberg_partition_pruning_with_integer_type)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py", line 161, in check_iceberg_partition_pruning_with_integer_type
    assert int(s3_read_requests_count) <= max_count, error()
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert int(s3_read_requests_count) <= max_count, error()

Assertion values
  assert int(s3_read_requests_count) <= max_count, error()
             ^ is '74'
  assert int(s3_read_requests_count) <= max_count, error()
         ^ is = 74
  assert int(s3_read_requests_count) <= max_count, error()
                                        ^ is 53
  assert int(s3_read_requests_count) <= max_count, error()
                                     ^ is = False
  assert int(s3_read_requests_count) <= max_count, error()
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py', line 161 in 'check_iceberg_partition_pruning_with_integer_type'

153\|                  # 2 requests for each row: one for metadata and one for data
154\|                  # 3-5 requests for metadata files
155\|                  s3_read_requests_count = metrics.get_S3ReadRequestsCount(
156\|                      log_comment=log_comment_with_partition_pruning,
157\|                  ).output.strip()
158\|                  min_count = 2 * (length - i) + 3
159\|                  max_count = 2 * (length - i) + 13
160\|                  assert min_count <= int(s3_read_requests_count), error()
161\|>                 assert int(s3_read_requests_count) <= max_count, error()
162\|  
163\|      with And("read data from ClickHouse with partition pruning disabled"):
164\|          for i in range(length):
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clauseXFail 4s 193ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 530, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 500, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 53, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py", line 720, in feature
    Scenario(test=check_partition_pruning_with_complex_where_clause)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py", line 367, in check_partition_pruning_with_complex_where_clause
    assert int(s3_read_requests_count) <= 22, error()
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert int(s3_read_requests_count) <= 22, error()

Assertion values
  assert int(s3_read_requests_count) <= 22, error()
             ^ is '26'
  assert int(s3_read_requests_count) <= 22, error()
         ^ is = 26
  assert int(s3_read_requests_count) <= 22, error()
                                     ^ is = False
  assert int(s3_read_requests_count) <= 22, error()
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py', line 367 in 'check_partition_pruning_with_complex_where_clause'

359\|              assert int(min_max_pruned_files) == 43, error()
360\|  
361\|      with And("check that S3ReadRequestsCount is correct"):
362\|          s3_read_requests_count = metrics.get_S3ReadRequestsCount(
363\|              log_comment=log_comment_with_partition_pruning,
364\|          ).output.strip()
365\|          if check_clickhouse_version(">=25.4")(self) or check_if_antalya_build(self):
366\|              assert 10 <= int(s3_read_requests_count), error()
367\|>             assert int(s3_read_requests_count) <= 22, error()
368\|          else:
369\|              assert 95 <= int(s3_read_requests_count), error()
370\|              assert int(s3_read_requests_count) <= 100, error()
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date typeXFail 4s 99ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 530, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 500, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 53, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py", line 723, in feature
    Scenario(test=partition_pruning_with_date_type)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py", line 512, in partition_pruning_with_date_type
    assert int(s3_read_requests_count) <= 150, error()
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert int(s3_read_requests_count) <= 150, error()

Assertion values
  assert int(s3_read_requests_count) <= 150, error()
             ^ is '215'
  assert int(s3_read_requests_count) <= 150, error()
         ^ is = 215
  assert int(s3_read_requests_count) <= 150, error()
                                     ^ is = False
  assert int(s3_read_requests_count) <= 150, error()
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py', line 512 in 'partition_pruning_with_date_type'

504\|              assert int(min_max_pruned_files) == 0, error()
505\|  
506\|      with And("check that S3ReadRequestsCount is correct"):
507\|          s3_read_requests_count = metrics.get_S3ReadRequestsCount(
508\|              log_comment=log_comment_with_partition_pruning,
509\|          ).output.strip()
510\|          if check_clickhouse_version(">=25.3")(self) or check_if_antalya_build(self):
511\|              assert 137 <= int(s3_read_requests_count), error()
512\|>             assert int(s3_read_requests_count) <= 150, error()
513\|          else:
514\|              assert 200 <= int(s3_read_requests_count), error()
515\|              assert int(s3_read_requests_count) <= 210, error()
/iceberg/iceberg cache/rest catalog/iceberg database engine/cacheXFail 2s 567ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 530, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 516, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 10, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 118, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 88, in cache
    _, cold_run_time = run_query_with_timing(
                       ^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 61, in run_query_with_timing
    result = iceberg_engine.read_data_from_clickhouse_iceberg_table(
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/steps/iceberg_engine.py", line 341, in read_data_from_clickhouse_iceberg_table
    result = node.query(
             ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py", line 1260, in query
    assert False, error(r.output)
           ^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert False, error(r.output)

Description
  Code: 552. DB::Exception: Unrecognized option '--input_format_parquet_use_metadata_cache'. Maybe you meant ['--input_format_parquet_use_offset_index','--output_format_parquet_geometadata']. (UNRECOGNIZED_ARGUMENTS)

Assertion values
  assert False, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py', line 1260 in 'query'

1252\|                  assert message in r.output, error(r.output)
1253\|  
1254\|          if not ignore_exception:
1255\|              if message is None or "Exception:" not in message:
1256\|                  with Then("check if output has exception") if steps else NullStep():
1257\|                      if "Exception:" in r.output:
1258\|                          if raise_on_exception:
1259\|                              raise QueryRuntimeException(r.output)
1260\|>                         assert False, error(r.output)
1261\|  
1262\|          return r
1263\|
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cacheXFail 10s 978ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 530, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 516, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 16, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 80, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 44, in cache
    icebergS3.read_parquet_data_with_icebergS3_table_function(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/steps/icebergS3.py", line 304, in read_parquet_data_with_icebergS3_table_function
    node.query(query)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py", line 1260, in query
    assert False, error(r.output)
           ^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert False, error(r.output)

Description
  Received exception from server (version 26.3.13):
Code: 115. DB::Exception: Received from localhost:9000. DB::Exception: Unknown setting 'input_format_parquet_use_metadata_cache': Maybe you meant ['input_format_parquet_use_offset_index','output_format_parquet_geometadata']. (UNKNOWN_SETTING)
(query: SELECT * FROM icebergS3('http://minio:9000/warehouse/data/', '[masked]:Secret(name='minio_root_user')', '[masked]:Secret(name='minio_root_password')', Parquet) WHERE date_col > '2030-01-01' SETTINGS optimize_count_from_files=0, remote_filesystem_read_prefetch=0, log_comment='log_7778b9a4_7646_11f1_9716_9200079ea566', use_hive_partitioning=1, input_format_parquet_use_metadata_cache=1,input_format_parquet_filter_push_down=1
)

Assertion values
  assert False, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py', line 1260 in 'query'

1252\|                  assert message in r.output, error(r.output)
1253\|  
1254\|          if not ignore_exception:
1255\|              if message is None or "Exception:" not in message:
1256\|                  with Then("check if output has exception") if steps else NullStep():
1257\|                      if "Exception:" in r.output:
1258\|                          if raise_on_exception:
1259\|                              raise QueryRuntimeException(r.output)
1260\|>                         assert False, error(r.output)
1261\|  
1262\|          return r
1263\|
/iceberg/iceberg cache/glue catalog/iceberg database engine/cacheXFail 2s 746ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 530, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 516, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 22, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 118, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 88, in cache
    _, cold_run_time = run_query_with_timing(
                       ^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 61, in run_query_with_timing
    result = iceberg_engine.read_data_from_clickhouse_iceberg_table(
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/steps/iceberg_engine.py", line 341, in read_data_from_clickhouse_iceberg_table
    result = node.query(
             ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py", line 1260, in query
    assert False, error(r.output)
           ^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert False, error(r.output)

Description
  Code: 552. DB::Exception: Unrecognized option '--input_format_parquet_use_metadata_cache'. Maybe you meant ['--input_format_parquet_use_offset_index','--output_format_parquet_geometadata']. (UNRECOGNIZED_ARGUMENTS)

Assertion values
  assert False, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py', line 1260 in 'query'

1252\|                  assert message in r.output, error(r.output)
1253\|  
1254\|          if not ignore_exception:
1255\|              if message is None or "Exception:" not in message:
1256\|                  with Then("check if output has exception") if steps else NullStep():
1257\|                      if "Exception:" in r.output:
1258\|                          if raise_on_exception:
1259\|                              raise QueryRuntimeException(r.output)
1260\|>                         assert False, error(r.output)
1261\|  
1262\|          return r
1263\|
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cacheXFail 10s 996ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 530, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 516, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 28, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 80, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 44, in cache
    icebergS3.read_parquet_data_with_icebergS3_table_function(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/steps/icebergS3.py", line 304, in read_parquet_data_with_icebergS3_table_function
    node.query(query)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py", line 1260, in query
    assert False, error(r.output)
           ^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert False, error(r.output)

Description
  Received exception from server (version 26.3.13):
Code: 115. DB::Exception: Received from localhost:9000. DB::Exception: Unknown setting 'input_format_parquet_use_metadata_cache': Maybe you meant ['input_format_parquet_use_offset_index','output_format_parquet_geometadata']. (UNKNOWN_SETTING)
(query: SELECT * FROM icebergS3('http://minio:9000/warehouse/data/', '[masked]:Secret(name='minio_root_user')', '[masked]:Secret(name='minio_root_password')', Parquet) WHERE date_col > '2030-01-01' SETTINGS optimize_count_from_files=0, remote_filesystem_read_prefetch=0, log_comment='log_81462f9d_7646_11f1_946f_9200079ea566', use_hive_partitioning=1, input_format_parquet_use_metadata_cache=1,input_format_parquet_filter_push_down=1
)

Assertion values
  assert False, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py', line 1260 in 'query'

1252\|                  assert message in r.output, error(r.output)
1253\|  
1254\|          if not ignore_exception:
1255\|              if message is None or "Exception:" not in message:
1256\|                  with Then("check if output has exception") if steps else NullStep():
1257\|                      if "Exception:" in r.output:
1258\|                          if raise_on_exception:
1259\|                              raise QueryRuntimeException(r.output)
1260\|>                         assert False, error(r.output)
1261\|  
1262\|          return r
1263\|

Results

Test Name Result Duration
/iceberg OK 1h 19m
/iceberg/iceberg engine OK 1h 13m
/iceberg/iceberg engine/rest catalog OK 1h 13m
/iceberg/iceberg engine/rest catalog/feature OK 45s 497ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 4s 724ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 15s 561ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 2s 158ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 294ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 4s 368ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 571ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 558ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 720ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 769ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 2s 136ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 2s 16ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 855ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 1s 867ms
/iceberg/iceberg engine/rest catalog/feature/select from system databases OK 1s 887ms
/iceberg/iceberg engine/rest catalog/feature OK 14s 305ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 3s 287ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 844ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 3s 975ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 713ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 729ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 1s 750ms
/iceberg/iceberg engine/rest catalog/column rbac OK 9m 12s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 5s 499ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 5s 644ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 5s 135ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 5s 489ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 5s 508ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 5s 284ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 5s 680ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 5s 494ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 5s 488ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 6s 104ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 5s 839ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 5s 532ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 5s 358ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 5s 554ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 5s 259ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 6s 816ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 5s 962ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 5s 537ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 5s 98ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 5s 121ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 5s 519ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 5s 342ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 5s 300ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 5s 170ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 5s 570ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 5s 88ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 5s 535ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 5s 260ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 5s 400ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 5s 704ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 5s 334ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 5s 422ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 5s 324ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 5s 664ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 5s 490ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 5s 335ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 5s 214ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 5s 415ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 5s 155ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 5s 218ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 5s 568ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 5s 272ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 6s 306ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 5s 530ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 5s 198ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 5s 955ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 5s 286ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 5s 629ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 5s 135ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 5s 296ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 5s 258ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 6s 5ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 5s 143ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 5s 580ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 5s 170ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 5s 97ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 5s 124ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 5s 382ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 5s 616ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 5s 331ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 5s 733ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 5s 252ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 5s 191ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 5s 330ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 5s 201ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 5s 286ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 5s 179ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 6s 72ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 5s 635ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 5s 252ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 5s 148ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 5s 351ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 5s 456ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 5s 193ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 5s 269ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 5s 465ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 6s 33ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 5s 163ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 6s 650ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 5s 336ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 5s 247ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 5s 330ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 5s 235ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 5s 539ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 5s 408ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 5s 642ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 5s 318ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 5s 771ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 5s 282ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 5s 455ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 5s 767ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 6s 572ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 5s 801ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 5s 208ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 5s 371ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 5s 367ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 5s 365ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 6s 828ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 5s 465ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 5s 878ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 1m 1s
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 56s 855ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 2s 229ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 2s 273ms
/iceberg/iceberg engine/rest catalog/feature OK 7s 119ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 2s 324ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 2s 598ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 2s 194ms
/iceberg/iceberg engine/rest catalog/feature OK 1m 26s
/iceberg/iceberg engine/rest catalog/feature/row policies OK 1m 26s
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 805ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 875ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 816ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 759ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 859ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 863ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 829ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 777ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 871ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 950ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 851ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 814ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 811ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 754ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 688ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 728ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 810ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 900ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 843ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 846ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 796ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 785ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 802ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 862ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 900ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 758ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 952ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 924ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 823ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 907ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 871ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 828ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 822ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 875ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 872ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 721ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 783ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 828ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 860ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 766ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 717ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 823ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 749ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 882ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 788ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 844ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 895ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 816ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 831ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 755ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 718ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 893ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 786ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 910ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 850ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 832ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 924ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 921ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 888ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 763ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 844ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 875ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 899ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 743ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 873ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 796ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 803ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 890ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 795ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 793ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 875ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 750ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 904ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 820ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 880ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 811ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 812ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 807ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 706ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 847ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 909ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 854ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 724ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 807ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 821ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 795ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 720ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 857ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 905ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 871ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 738ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 717ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 782ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 889ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 739ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 797ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 862ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 789ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 807ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 783ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 4s 612ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 571ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 140ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 127ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 169ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 262ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 129ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 833ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 693ms
/iceberg/iceberg engine/rest catalog/feature OK 23m 38s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 23m 38s
/iceberg/iceberg engine/rest catalog/feature OK 4s 627ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 2s 337ms
/iceberg/iceberg engine/rest catalog/feature/append OK 2s 288ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 19m 23s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 11s 350ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 11s 766ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 11s 631ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 11s 140ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 11s 213ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 11s 258ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 11s 261ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 11s 587ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 11s 349ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 10s 864ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 11s 232ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 11s 704ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 11s 404ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 11s 405ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 11s 787ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 10s 933ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 11s 429ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 11s 462ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 11s 488ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 11s 161ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 11s 746ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 11s 240ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 12s 147ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 12s 468ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 12s 188ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 12s 21ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 11s 25ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 11s 868ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 11s 331ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 11s 561ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 11s 291ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 11s 416ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 11s 610ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 11s 515ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 11s 204ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 11s 341ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 11s 776ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 11s 342ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 11s 124ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 11s 551ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 11s 230ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 11s 605ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 11s 461ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 11s 291ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 11s 309ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 11s 113ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 11s 2ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 11s 223ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 11s 619ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 11s 428ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 12s 81ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 12s 105ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 11s 830ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 11s 746ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 11s 764ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 11s 789ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 11s 659ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 11s 667ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 11s 643ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 12s 94ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 11s 746ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 11s 549ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 11s 640ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 11s 331ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 11s 848ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 11s 723ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 11s 533ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 11s 115ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 11s 815ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 11s 612ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 11s 835ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 11s 720ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 12s 162ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 12s 291ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 12s 301ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 12s 259ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 11s 970ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 11s 453ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 12s 282ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 12s 336ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 12s 130ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 12s 71ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 12s 201ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 11s 361ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 12s 31ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 11s 888ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 11s 986ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 11s 564ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 11s 575ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 11s 614ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 11s 561ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 11s 662ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 11s 473ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 11s 614ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 11s 307ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 11s 634ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 12s 132ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 11s 824ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 11s 737ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 12s 349ms
/iceberg/iceberg engine/rest catalog/swarm OK 2s 905ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 904ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 2m 9s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 2s 402ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 899ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 3s 309ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 3s 731ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 4s 146ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 4s 367ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 4s 757ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 5s 435ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 6s 54ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 6s 95ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 6s 991ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 6s 824ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 7s 673ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 8s 106ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 8s 257ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 8s 739ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 9s 223ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 9s 551ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 9s 895ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 10s 616ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 9m 31s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 5s 594ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 5s 710ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 5s 611ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 5s 674ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 5s 749ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 5s 777ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 5s 914ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 5s 981ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 5s 834ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 5s 718ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 5s 738ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 5s 460ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 5s 608ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 5s 805ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 5s 615ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 5s 536ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 5s 724ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 5s 639ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 5s 799ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 5s 862ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 5s 637ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 5s 585ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 5s 700ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 5s 783ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 5s 565ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 5s 601ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 5s 708ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 5s 801ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 5s 609ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 5s 883ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 5s 743ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 5s 793ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 5s 789ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 5s 647ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 5s 751ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 5s 802ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 5s 535ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 5s 776ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 5s 920ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 5s 726ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 5s 741ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 5s 741ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 5s 617ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 5s 483ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 5s 650ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 5s 719ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 5s 690ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 5s 600ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 5s 553ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 5s 597ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 5s 887ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 5s 477ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 5s 723ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 5s 572ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 5s 432ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 6s 115ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 5s 564ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 5s 398ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 5s 811ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 5s 611ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 5s 638ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 5s 569ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 5s 547ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 733ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 5s 554ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 5s 791ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 5s 847ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 5s 685ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 5s 643ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 5s 790ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 5s 995ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 5s 788ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 5s 566ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 5s 749ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 5s 740ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 5s 823ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 5s 731ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 5s 593ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 5s 450ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 5s 810ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 5s 753ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 5s 632ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 5s 837ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 5s 490ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 5s 635ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 5s 509ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 5s 721ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 5s 438ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 5s 531ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 5s 812ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 5s 620ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 5s 446ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 5s 733ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 5s 468ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 5s 671ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 6s 431ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 6s 117ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 6s 236ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 6s 104ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 6s 193ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 24s 113ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type XFail 4s 652ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause XFail 4s 193ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type XFail 4s 99ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 11s 165ms
/iceberg/iceberg engine/rest catalog/datatypes OK 17s 3ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 17s 2ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 4m 49s
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition OK 4m 49s
/iceberg/iceberg engine/rest catalog/dot separated column names OK 3s 881ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 1s 725ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 2s 154ms
/iceberg/iceberg engine/rest catalog/sort key timezone OK 13s 8ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and utc timezone OK 1s 805ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with hour transform and utc timezone OK 1s 872ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with month transform and utc timezone OK 1s 848ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with year transform and utc timezone OK 1s 849ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and positive utc offset timezone OK 1s 843ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and negative utc offset timezone OK 1s 950ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and timestamptz type OK 1s 836ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint OK 3s 893ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint/similar table names hint OK 3s 892ms
/iceberg/s3 table function OK 1s 603ms
/iceberg/s3 table function/s3 table function OK 1s 602ms
/iceberg/icebergS3 table function OK 2m 33s
/iceberg/icebergS3 table function/rest catalog OK 1m 33s
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 50s 600ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 1s 717ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 819ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 23s 513ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 23s 546ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 42s 410ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 16s 902ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 712ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 937ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 154ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 417ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 805ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 920ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 884ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 669ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 493ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 723ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 528ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 535ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 512ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 492ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 971ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 961ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 940ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 940ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 900ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 453ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 984ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 196ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 501ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 720ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 2s 63ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 50ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 888ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 827ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 701ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 669ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 770ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 799ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 717ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 664ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 514ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 659ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 690ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 763ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 791ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 861ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 501ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 733ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 970ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 157ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 380ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 904ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 681ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 408ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 243ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 163ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 196ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 194ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 195ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 168ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 167ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 167ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 181ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 196ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 170ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 153ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 25s 503ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 326ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 532ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 765ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 2s 4ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 270ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 978ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 966ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 1s 3ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 1s 2ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 965ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 990ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 947ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 928ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 939ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 980ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 999ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 1s 4ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 953ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 964ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 908ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 898ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 179ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 635ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 852ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 151ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 898ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 890ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 908ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 2s 51ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 2s 106ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 2s 34ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 2s 92ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 1s 957ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 1s 968ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 930ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 974ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 979ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 849ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 829ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 792ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 511ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 719ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 966ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 147ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 450ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 977ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 725ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 495ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 297ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 246ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 240ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 248ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 269ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 242ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 270ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 245ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 250ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 236ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 229ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 197ms
/iceberg/icebergS3 table function/glue catalog OK 1m 0s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 7s 199ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 791ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 807ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 1s 780ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 1s 818ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 53s 522ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 26s 204ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 1s 330ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 1s 529ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 726ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 981ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 2s 185ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 939ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 935ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 943ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 931ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 945ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 906ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 901ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 910ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 921ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 915ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 878ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 893ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 886ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 884ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 881ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 922ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 247ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 568ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 888ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 61ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 796ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 928ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 835ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 1s 834ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 1s 835ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 1s 831ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 1s 809ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 1s 857ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 1s 841ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 837ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 890ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 759ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 774ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 785ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 757ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 532ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 751ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 971ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 199ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 429ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 892ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 699ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 459ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 224ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 225ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 259ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 245ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 232ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 216ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 178ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 222ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 210ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 197ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 202ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 174ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 27s 317ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 338ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 542ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 790ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 2s 51ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 273ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 1s 10ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 1s 15ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 984ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 955ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 938ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 968ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 936ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 956ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 1s 8ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 1s 21ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 994ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 1s 1ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 968ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 926ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 909ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 951ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 259ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 755ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 997ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 290ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 2s 70ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 998ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 976ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 1s 970ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 1s 945ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 1s 971ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 2s 38ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 2s 25ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 1s 913ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 998ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 2s 66ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 809ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 777ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 851ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 767ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 557ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 11ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 749ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 197ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 498ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 972ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 752ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 510ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 282ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 210ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 282ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 281ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 276ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 252ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 211ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 266ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 272ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 270ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 243ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 233ms
/iceberg/iceberg cache OK 32s 901ms
/iceberg/iceberg cache/rest catalog OK 16s 331ms
/iceberg/iceberg cache/rest catalog/iceberg database engine OK 2s 569ms
/iceberg/iceberg cache/rest catalog/iceberg database engine/cache XFail 2s 567ms
/iceberg/iceberg cache/rest catalog/iceberg table engine OK 2s 635ms
/iceberg/iceberg cache/rest catalog/iceberg table engine/cache OK 2s 634ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function OK 10s 979ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cache XFail 10s 978ms
/iceberg/iceberg cache/glue catalog OK 16s 568ms
/iceberg/iceberg cache/glue catalog/iceberg database engine OK 2s 747ms
/iceberg/iceberg cache/glue catalog/iceberg database engine/cache XFail 2s 746ms
/iceberg/iceberg cache/glue catalog/iceberg table engine OK 2s 822ms
/iceberg/iceberg cache/glue catalog/iceberg table engine/cache OK 2s 821ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function OK 10s 997ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cache XFail 10s 996ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922