Iceberg Test Run Report

DateApr 28, 2026 1:15
Duration1h 15m
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.1/75d2d67c5e994b61d8ce3729da6cf34bf7ef548a/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
user.nameMyroTk
version26.1.11.20001.altinityantalya
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-26.1/75d2d67c5e994b61d8ce3729da6cf34bf7ef548a/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash1a2edc792c104aaade5ee012b0ea4f320da8136c
job.nameiceberg_1
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/25026756688
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-26.1/75d2d67c5e994b61d8ce3729da6cf34bf7ef548a/build_arm_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

98.7%OK
1%Known

Statistics

Units Skip OK Fail XFail
Modules
1
1
Features
43
43
Scenarios
489
2
478
9
Checks
340
340
Steps
56023
55945
12
66

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal columnXFail 1s 995ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 471, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 441, 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 1s 993ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 471, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 441, 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 3s 223ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 471, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 441, 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 '100'
  assert int(s3_read_requests_count) <= max_count, error()
         ^ is = 100
  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 336ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 471, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 441, 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 '36'
  assert int(s3_read_requests_count) <= 22, error()
         ^ is = 36
  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 3s 161ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 471, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 441, 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 '288'
  assert int(s3_read_requests_count) <= 150, error()
         ^ is = 288
  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 19s 573ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 471, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 457, 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 105, in cache
    warm_run_time < cold_run_time
AssertionError: query ran slower with caching cold_run_time=0.1645815372467041s warm_run_time=0.16896533966064453s
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cacheXFail 14s 277ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 471, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 457, 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 68, in cache
    assert hot_execution_time < cold_execution_time, error()
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert hot_execution_time < cold_execution_time, error()

Assertion values
  assert hot_execution_time < cold_execution_time, error()
         ^ is 0.20620226860046387
  assert hot_execution_time < cold_execution_time, error()
                              ^ is 0.1878058910369873
  assert hot_execution_time < cold_execution_time, error()
                            ^ is = False
  assert hot_execution_time < cold_execution_time, error()
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py', line 68 in 'cache'

60\|                      cache_parquet_metadata=True,
61\|                      where_clause="date_col > '2030-01-01'",
62\|                  )
63\|              )
64\|  
65\|              note(
66\|                  f"hot_execution_time: {hot_execution_time} cold_execution_time: {cold_execution_time}"
67\|              )
68\|>             assert hot_execution_time < cold_execution_time, error()
69\|  
70\|      with And("Check hits"):
71\|          hits = check_hits(
/iceberg/iceberg cache/glue catalog/iceberg database engine/cacheXFail 38s 902ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 471, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 457, 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 109, in cache
    hits = check_hits(
           ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../parquet/tests/steps/metadata_caching.py", line 469, in check_hits
    assert int(hits) > 0, f"number of hits is less than 1 and = {hits}"
           ^^^^^^^^^^^^^
AssertionError: number of hits is less than 1 and = 0
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cacheXFail 10s 172ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 471, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 457, 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 68, in cache
    assert hot_execution_time < cold_execution_time, error()
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert hot_execution_time < cold_execution_time, error()

Assertion values
  assert hot_execution_time < cold_execution_time, error()
         ^ is 0.1844625473022461
  assert hot_execution_time < cold_execution_time, error()
                              ^ is 0.17764663696289062
  assert hot_execution_time < cold_execution_time, error()
                            ^ is = False
  assert hot_execution_time < cold_execution_time, error()
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py', line 68 in 'cache'

60\|                      cache_parquet_metadata=True,
61\|                      where_clause="date_col > '2030-01-01'",
62\|                  )
63\|              )
64\|  
65\|              note(
66\|                  f"hot_execution_time: {hot_execution_time} cold_execution_time: {cold_execution_time}"
67\|              )
68\|>             assert hot_execution_time < cold_execution_time, error()
69\|  
70\|      with And("Check hits"):
71\|          hits = check_hits(

Results

Test Name Result Duration
/iceberg OK 1h 15m
/iceberg/iceberg engine OK 1h 6m
/iceberg/iceberg engine/rest catalog OK 1h 6m
/iceberg/iceberg engine/rest catalog/feature OK 42s 187ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 4s 421ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 14s 615ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 2s 63ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 110ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 4s 19ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 449ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 406ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 561ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 606ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 1s 914ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 1s 776ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 737ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 1s 744ms
/iceberg/iceberg engine/rest catalog/feature/select from system databases OK 1s 751ms
/iceberg/iceberg engine/rest catalog/feature OK 13s 13ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 2s 997ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 682ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 3s 641ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 563ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 544ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 1s 579ms
/iceberg/iceberg engine/rest catalog/column rbac OK 8m 22s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 4s 941ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 4s 920ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 4s 697ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 4s 957ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 4s 959ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 4s 770ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 4s 960ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 4s 916ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 4s 968ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 5s 364ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 5s 61ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 4s 976ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 4s 841ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 4s 975ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 4s 780ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 6s 60ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 5s 529ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 5s 91ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 4s 676ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 4s 809ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 4s 952ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 4s 826ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 4s 884ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 4s 711ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 5s 49ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 4s 781ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 4s 965ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 4s 869ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 5s 54ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 5s 149ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 4s 939ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 4s 911ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 4s 739ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 5s 166ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 4s 859ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 4s 748ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 4s 812ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 4s 960ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 4s 812ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 4s 782ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 5s 46ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 4s 899ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 5s 540ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 5s 22ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 4s 824ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 5s 392ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 4s 714ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 5s 210ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 4s 719ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 4s 958ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 4s 810ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 5s 344ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 4s 798ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 5s 103ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 4s 735ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 4s 678ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 4s 688ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 5s 36ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 5s 113ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 4s 914ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 5s 341ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 4s 905ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 4s 787ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 4s 837ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 4s 775ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 4s 786ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 4s 783ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 5s 570ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 5s 240ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 4s 772ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 4s 750ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 5s 38ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 5s 20ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 4s 763ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 4s 761ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 5s 42ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 5s 405ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 4s 726ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 6s 34ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 4s 856ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 4s 900ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 4s 907ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 4s 916ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 5s 118ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 4s 925ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 5s 206ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 4s 899ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 5s 81ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 4s 681ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 4s 868ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 5s 144ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 6s 29ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 5s 219ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 4s 750ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 4s 971ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 4s 800ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 4s 938ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 6s 92ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 4s 830ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 5s 224ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 48s 227ms
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 44s 235ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 1s 995ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 1s 993ms
/iceberg/iceberg engine/rest catalog/feature OK 6s 486ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 2s 116ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 2s 358ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 2s 9ms
/iceberg/iceberg engine/rest catalog/feature OK 1m 19s
/iceberg/iceberg engine/rest catalog/feature/row policies OK 1m 19s
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 753ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 798ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 729ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 663ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 807ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 786ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 760ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 731ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 806ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 798ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 775ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 729ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 726ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 676ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 665ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 673ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 738ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 809ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 815ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 743ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 732ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 735ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 713ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 784ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 792ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 660ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 855ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 784ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 722ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 797ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 815ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 738ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 746ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 787ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 794ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 681ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 741ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 722ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 781ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 675ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 666ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 749ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 656ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 809ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 733ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 796ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 821ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 747ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 802ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 753ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 663ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 787ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 726ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 806ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 753ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 744ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 816ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 819ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 790ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 670ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 780ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 820ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 827ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 662ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 798ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 746ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 737ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 809ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 750ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 741ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 815ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 666ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 807ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 742ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 823ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 725ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 724ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 714ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 659ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 785ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 807ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 784ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 671ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 736ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 801ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 722ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 655ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 806ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 825ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 803ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 703ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 664ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 731ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 785ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 669ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 741ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 795ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 730ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 731ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 745ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 4s 244ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 558ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 132ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 128ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 125ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 243ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 124ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 733ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 622ms
/iceberg/iceberg engine/rest catalog/feature OK 21m 26s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 21m 26s
/iceberg/iceberg engine/rest catalog/feature OK 4s 669ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 2s 377ms
/iceberg/iceberg engine/rest catalog/feature/append OK 2s 290ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 17m 49s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 10s 694ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 10s 978ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 10s 918ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 10s 467ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 10s 565ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 10s 658ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 10s 399ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 10s 706ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 10s 695ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 10s 399ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 10s 531ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 11s 164ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 10s 922ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 10s 784ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 10s 897ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 10s 278ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 10s 664ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 10s 750ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 10s 878ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 10s 410ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 10s 973ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 10s 455ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 10s 699ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 10s 990ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 10s 598ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 10s 521ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 10s 311ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 11s 49ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 10s 733ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 11s 9ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 10s 580ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 10s 699ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 10s 837ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 10s 669ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 10s 589ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 10s 613ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 11s 33ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 10s 758ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 10s 463ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 10s 933ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 10s 451ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 10s 957ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 10s 802ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 10s 504ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 10s 728ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 10s 671ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 10s 581ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 10s 513ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 10s 837ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 10s 700ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 11s 9ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 11s 66ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 10s 970ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 10s 579ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 10s 494ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 11s 52ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 10s 801ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 10s 628ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 10s 844ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 10s 898ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 10s 820ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 10s 632ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 10s 711ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 10s 451ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 10s 715ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 10s 697ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 10s 415ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 10s 316ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 10s 774ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 10s 430ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 10s 800ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 10s 683ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 11s 84ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 11s 42ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 10s 777ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 10s 898ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 10s 596ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 10s 147ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 10s 921ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 10s 863ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 10s 996ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 10s 611ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 10s 890ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 10s 405ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 10s 854ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 10s 534ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 10s 708ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 10s 398ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 10s 535ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 10s 402ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 10s 629ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 10s 723ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 10s 644ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 10s 569ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 10s 250ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 10s 672ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 10s 791ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 10s 346ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 10s 582ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 10s 850ms
/iceberg/iceberg engine/rest catalog/swarm OK 2s 818ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 817ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 1m 58s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 2s 126ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 579ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 3s 105ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 3s 489ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 3s 611ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 3s 972ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 4s 405ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 4s 812ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 5s 283ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 5s 546ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 6s 273ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 6s 572ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 6s 928ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 7s 170ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 7s 514ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 8s 237ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 8s 452ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 9s 170ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 9s 473ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 10s 132ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 8m 23s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 5s 54ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 5s 131ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 4s 998ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 4s 980ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 5s 28ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 5s 33ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 5s 77ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 5s 166ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 5s 8ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 5s 5ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 5s 10ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 4s 949ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 4s 988ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 5s 78ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 5s 6ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 5s 61ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 5s 86ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 5s 110ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 4s 960ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 5s 40ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 4s 962ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 4s 965ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 5s 17ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 5s 214ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 4s 929ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 4s 996ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 5s 126ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 5s 64ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 5s 49ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 5s 45ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 4s 974ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 5s 86ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 5s 85ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 5s 26ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 5s 30ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 5s 81ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 4s 976ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 5s 247ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 5s 167ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 5s 52ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 5s 214ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 4s 972ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 5s 3ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 4s 971ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 4s 947ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 5s 124ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 5s 43ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 5s 159ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 5s 23ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 4s 922ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 4s 993ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 4s 872ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 5s 229ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 4s 965ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 4s 949ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 5s 37ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 4s 939ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 4s 849ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 5s 88ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 5s 334ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 5s 74ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 4s 930ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 5s 18ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 2ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 4s 978ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 5s 135ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 5s 16ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 5s 7ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 5s 115ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 5s 2ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 4s 971ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 5s 92ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 4s 949ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 5s 136ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 5s 135ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 5s 135ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 5s 1ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 4s 863ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 4s 835ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 5s 95ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 5s 6ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 5s 78ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 4s 926ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 5s 47ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 5s 92ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 4s 810ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 4s 960ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 4s 842ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 5s 119ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 5s 170ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 5s 117ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 4s 935ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 5s 151ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 4s 843ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 4s 978ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 5s 198ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 5s 247ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 5s 52ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 5s 102ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 4s 949ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 20s 293ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type XFail 3s 223ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause XFail 4s 336ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type XFail 3s 161ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 9s 569ms
/iceberg/iceberg engine/rest catalog/datatypes OK 14s 314ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 14s 313ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 4m 27s
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition OK 4m 27s
/iceberg/iceberg engine/rest catalog/dot separated column names OK 3ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names Skip 1ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns Skip 953us
/iceberg/iceberg engine/rest catalog/sort key timezone OK 11s 872ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and utc timezone OK 1s 728ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with hour transform and utc timezone OK 1s 705ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with month transform and utc timezone OK 1s 680ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with year transform and utc timezone OK 1s 682ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and positive utc offset timezone OK 1s 715ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and negative utc offset timezone OK 1s 685ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and timestamptz type OK 1s 669ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint OK 3s 351ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint/similar table names hint OK 3s 350ms
/iceberg/s3 table function OK 1s 416ms
/iceberg/s3 table function/s3 table function OK 1s 415ms
/iceberg/icebergS3 table function OK 2m 13s
/iceberg/icebergS3 table function/rest catalog OK 48s 569ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 6s 461ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 1s 558ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 660ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 1s 596ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 1s 644ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 42s 95ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 16s 431ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 690ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 896ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 121ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 358ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 690ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 840ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 639ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 582ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 457ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 626ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 637ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 430ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 469ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 416ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 848ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 917ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 865ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 879ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 861ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 474ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 997ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 168ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 360ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 694ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 906ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 916ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 739ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 838ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 743ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 743ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 686ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 795ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 743ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 656ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 2s 215ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 2s 289ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 2s 182ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 2s 228ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 2s 164ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 660ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 467ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 659ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 852ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 55ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 291ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 807ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 629ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 426ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 232ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 180ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 177ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 197ms
/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 192ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 158ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 143ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 176ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 152ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 166ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 154ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 25s 662ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 229ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 414ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 609ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 2s 91ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 861ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 954ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 964ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 961ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 959ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 924ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 970ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 964ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 958ms
/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 953ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 990ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 993ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 945ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 959ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 942ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 2s 340ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 635ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 942ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 3s 242ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 486ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 2s 304ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 2s 263ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 2s 266ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 2s 294ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 2s 400ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 2s 427ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 2s 433ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 2s 528ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 2s 405ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 2s 549ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 2s 430ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 2s 464ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 2s 389ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 2s 396ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 2s 325ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 481ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 689ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 887ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 354ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 89ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 928ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 729ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 521ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 321ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 174ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 223ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 253ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 241ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 217ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 289ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 261ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 242ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 242ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 240ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 205ms
/iceberg/icebergS3 table function/glue catalog OK 1m 24s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 28s 442ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 649ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 694ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 1s 653ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 23s 442ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 56s 62ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 27s 594ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 1s 261ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 1s 458ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 671ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 867ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 2s 50ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 889ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 885ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 898ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 916ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 909ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 917ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 894ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 889ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 901ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 905ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 908ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 898ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 874ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 858ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 894ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 2s 598ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 826ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 3s 150ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 3s 460ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 637ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 2s 404ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 2s 391ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 2s 364ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 2s 361ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 2s 423ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 2s 376ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 2s 381ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 2s 270ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 2s 355ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 2s 422ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 2s 401ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 2s 359ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 2s 333ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 2s 245ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 2s 231ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 507ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 710ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 931ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 117ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 367ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 878ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 675ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 455ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 241ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 245ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 239ms
/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 205ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 234ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 189ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 200ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 222ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 200ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 206ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 181ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 28s 466ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 276ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 525ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 766ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 999ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 175ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 1s 81ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 1s 36ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 1s 25ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 1s 26ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 1s 19ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 982ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 980ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 985ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 981ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 987ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 961ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 963ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 928ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 937ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 951ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 2s 500ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 808ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 3s 20ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 3s 334ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 719ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 2s 506ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 2s 481ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 2s 417ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 2s 367ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 2s 527ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 2s 503ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 2s 627ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 2s 641ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 2s 606ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 2s 610ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 2s 400ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 2s 403ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 2s 438ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 2s 440ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 2s 265ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 507ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 729ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 925ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 131ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 441ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 925ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 712ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 518ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 294ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 274ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 277ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 273ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 286ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 260ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 287ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 271ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 273ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 254ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 262ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 198ms
/iceberg/iceberg cache OK 1m 28s
/iceberg/iceberg cache/rest catalog OK 36s 437ms
/iceberg/iceberg cache/rest catalog/iceberg database engine OK 19s 575ms
/iceberg/iceberg cache/rest catalog/iceberg database engine/cache XFail 19s 573ms
/iceberg/iceberg cache/rest catalog/iceberg table engine OK 2s 459ms
/iceberg/iceberg cache/rest catalog/iceberg table engine/cache OK 2s 458ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function OK 14s 278ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cache XFail 14s 277ms
/iceberg/iceberg cache/glue catalog OK 51s 856ms
/iceberg/iceberg cache/glue catalog/iceberg database engine OK 38s 904ms
/iceberg/iceberg cache/glue catalog/iceberg database engine/cache XFail 38s 902ms
/iceberg/iceberg cache/glue catalog/iceberg table engine OK 2s 776ms
/iceberg/iceberg cache/glue catalog/iceberg table engine/cache OK 2s 775ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function OK 10s 173ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cache XFail 10s 172ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922