Iceberg Test Run Report

DateApr 01, 2026 18:48
Duration1h 16m
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/948d4e9a67012444f2e58f7f76c57eb4cdd272ef/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
user.namezvonand
version26.1.6.20001.altinityantalya
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-26.1/948d4e9a67012444f2e58f7f76c57eb4cdd272ef/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash7b671c109330ac55f7eedabe05e6aea7530ffdd5
job.nameiceberg_1
job.retry2
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/23845710026
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-26.1/948d4e9a67012444f2e58f7f76c57eb4cdd272ef/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
488
2
477
9
Checks
340
340
Steps
55981
55903
12
66

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal columnXFail 1s 992ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 367, 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 341, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 20, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 553, in feature
    Scenario(test=issue_with_decimal_column)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 459, in issue_with_decimal_column
    check_read_with_predicate_push_down(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 69, in check_read_with_predicate_push_down
    assert int(read_rows.output.strip()) == 0, error(
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

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

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

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

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

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

61\|              input_format_parquet_bloom_filter_push_down="0"
62\|          )
63\|          assert result.output.strip() == "", error()
64\|  
65\|      with And(f"check that 0 rows were read"):
66\|          read_rows = metrics.get_read_rows(
67\|              log_comment=log_comment_with_pruning,
68\|          )
69\|>         assert int(read_rows.output.strip()) == 0, error(
70\|              f"Expected 0 rows to be read, with where clause: {where_clause}, but got {read_rows.output.strip()}"
71\|          )
72\|
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float columnXFail 2s 50ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 367, 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 341, 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 218ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 367, 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 341, 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 3s 248ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 367, 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 341, 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 280ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 367, 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 341, 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 39s 190ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 367, 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 357, 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 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/rest catalog/icebergS3 table function/cacheXFail 10s 464ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 367, 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 357, 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.18768000602722168
  assert hot_execution_time < cold_execution_time, error()
                              ^ is 0.18676114082336426
  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 39s 151ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 367, 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 357, 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 53ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 367, 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 357, 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.18530845642089844
  assert hot_execution_time < cold_execution_time, error()
                              ^ is 0.18037724494934082
  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 16m
/iceberg/iceberg engine OK 1h 8m
/iceberg/iceberg engine/rest catalog OK 1h 8m
/iceberg/iceberg engine/rest catalog/feature OK 41s 50ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 4s 566ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 14s 924ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 1s 971ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 136ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 4s 101ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 485ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 497ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 574ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 628ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 1s 921ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 1s 811ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 718ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 1s 705ms
/iceberg/iceberg engine/rest catalog/feature OK 13s 138ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 2s 989ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 702ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 3s 665ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 575ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 616ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 1s 586ms
/iceberg/iceberg engine/rest catalog/column rbac OK 8m 29s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 4s 935ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 4s 931ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 4s 771ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 5s 32ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 5s 28ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 4s 871ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 5s 150ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 5s 1ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 5s 17ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 5s 521ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 5s 162ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 5s 26ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 4s 851ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 5s 16ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 4s 867ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 6s 76ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 5s 488ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 5s 112ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 4s 732ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 4s 878ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 5s 24ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 4s 848ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 4s 912ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 4s 782ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 5s 86ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 4s 742ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 4s 981ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 4s 909ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 4s 970ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 5s 207ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 5s 13ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 4s 956ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 4s 859ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 5s 203ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 5s 16ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 4s 907ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 4s 813ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 4s 952ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 4s 875ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 4s 817ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 5s 106ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 4s 931ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 5s 600ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 5s 114ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 4s 956ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 5s 347ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 4s 855ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 5s 260ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 4s 797ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 4s 940ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 4s 863ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 5s 461ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 4s 817ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 5s 165ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 4s 852ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 4s 791ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 4s 835ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 5s 124ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 5s 196ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 4s 893ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 5s 441ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 4s 935ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 4s 843ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 4s 962ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 4s 809ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 4s 827ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 4s 791ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 5s 560ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 5s 219ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 4s 910ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 4s 905ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 5s 115ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 5s 112ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 4s 816ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 4s 927ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 5s 108ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 5s 521ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 4s 811ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 6s 110ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 4s 970ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 4s 908ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 4s 976ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 4s 935ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 5s 207ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 4s 945ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 5s 174ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 4s 842ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 5s 206ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 4s 761ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 5s 37ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 5s 283ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 6s 170ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 5s 280ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 4s 842ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 5s 38ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 4s 904ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 5s 45ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 6s 111ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 4s 982ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 5s 344ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 48s 801ms
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 44s 756ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 1s 992ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 2s 50ms
/iceberg/iceberg engine/rest catalog/feature OK 6s 664ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 2s 192ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 2s 350ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 2s 119ms
/iceberg/iceberg engine/rest catalog/feature OK 1m 20s
/iceberg/iceberg engine/rest catalog/feature/row policies OK 1m 20s
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 769ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 834ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 766ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 677ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 846ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 825ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 775ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 752ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 820ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 811ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 825ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 750ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 759ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 692ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 680ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 666ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 749ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 822ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 831ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 766ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 741ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 760ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 744ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 822ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 828ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 703ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 841ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 812ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 742ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 833ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 835ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 772ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 779ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 805ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 825ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 688ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 767ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 744ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 782ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 670ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 682ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 747ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 697ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 820ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 754ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 853ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 807ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 738ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 813ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 737ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 683ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 816ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 733ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 829ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 747ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 753ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 833ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 816ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 827ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 667ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 784ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 839ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 822ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 681ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 867ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 741ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 748ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 815ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 740ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 746ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 796ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 685ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 822ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 754ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 810ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 756ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 743ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 776ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 676ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 793ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 823ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 771ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 682ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 738ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 797ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 747ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 689ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 810ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 817ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 827ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 724ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 688ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 736ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 816ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 686ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 792ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 822ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 778ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 791ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 736ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 4s 647ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 565ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 139ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 135ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 128ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 258ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 129ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 764ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 652ms
/iceberg/iceberg engine/rest catalog/feature OK 21m 58s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 21m 58s
/iceberg/iceberg engine/rest catalog/feature OK 4s 540ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 2s 293ms
/iceberg/iceberg engine/rest catalog/feature/append OK 2s 245ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 18m 22s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 11s 105ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 11s 318ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 11s 170ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 10s 988ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 10s 934ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 10s 923ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 10s 736ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 11s 79ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 11s 42ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 10s 899ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 11s 223ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 11s 318ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 11s 118ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 11s 156ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 11s 381ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 10s 796ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 11s 221ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 11s 91ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 11s 286ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 10s 903ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 11s 409ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 10s 872ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 11s 242ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 11s 273ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 10s 905ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 11s 68ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 10s 653ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 11s 241ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 11s 223ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 11s 294ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 10s 985ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 11s 218ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 11s 350ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 11s 19ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 10s 978ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 10s 942ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 11s 581ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 11s 579ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 11s 205ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 11s 446ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 11s 0ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 11s 320ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 11s 25ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 10s 988ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 11s 124ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 10s 691ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 10s 729ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 10s 780ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 11s 45ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 10s 587ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 11s 158ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 11s 305ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 11s 142ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 10s 949ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 10s 772ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 10s 944ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 11s 37ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 10s 830ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 10s 864ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 11s 317ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 11s 195ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 10s 940ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 11s 17ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 10s 796ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 11s 92ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 11s 107ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 10s 705ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 10s 382ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 11s 61ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 10s 757ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 11s 87ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 10s 867ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 11s 521ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 11s 244ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 11s 6ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 11s 140ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 10s 810ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 10s 404ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 11s 282ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 11s 178ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 11s 175ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 10s 866ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 11s 303ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 10s 718ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 11s 11ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 10s 920ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 10s 890ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 10s 630ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 10s 933ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 10s 828ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 10s 867ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 11s 179ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 10s 695ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 10s 767ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 10s 634ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 11s 69ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 11s 130ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 10s 787ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 10s 841ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 10s 969ms
/iceberg/iceberg engine/rest catalog/swarm OK 2s 911ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 909ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 1m 59s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 2s 185ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 691ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 2s 939ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 3s 491ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 3s 743ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 4s 93ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 4s 390ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 4s 802ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 5s 402ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 5s 882ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 5s 970ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 6s 332ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 7s 3ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 6s 978ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 7s 529ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 8s 510ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 8s 739ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 8s 655ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 9s 312ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 10s 570ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 8m 39s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 4s 957ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 5s 151ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 5s 129ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 5s 106ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 5s 148ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 5s 159ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 5s 321ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 5s 232ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 5s 182ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 5s 154ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 5s 196ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 4s 951ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 5s 128ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 5s 102ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 5s 27ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 5s 87ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 5s 350ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 5s 291ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 5s 113ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 5s 269ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 5s 37ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 4s 974ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 5s 231ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 5s 278ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 4s 964ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 5s 169ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 5s 126ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 5s 176ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 5s 260ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 5s 381ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 5s 252ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 5s 134ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 5s 204ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 5s 110ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 5s 449ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 5s 151ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 5s 6ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 5s 395ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 5s 211ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 5s 179ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 5s 297ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 5s 197ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 5s 181ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 5s 118ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 5s 24ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 5s 370ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 5s 350ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 5s 362ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 5s 140ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 5s 257ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 5s 239ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 5s 68ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 5s 389ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 5s 135ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 5s 86ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 5s 90ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 5s 120ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 5s 45ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 5s 435ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 5s 346ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 5s 291ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 5s 108ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 5s 250ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 281ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 5s 333ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 5s 384ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 5s 281ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 5s 198ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 5s 301ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 5s 136ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 5s 301ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 5s 168ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 5s 376ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 5s 255ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 5s 333ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 5s 332ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 5s 56ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 5s 48ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 5s 79ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 5s 293ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 5s 193ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 5s 148ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 5s 176ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 5s 215ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 5s 512ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 5s 136ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 5s 424ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 5s 15ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 5s 110ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 5s 245ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 5s 272ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 5s 119ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 5s 201ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 4s 983ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 5s 83ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 5s 158ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 5s 341ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 5s 213ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 5s 154ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 5s 91ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 19s 716ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type XFail 3s 218ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause XFail 3s 248ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type XFail 3s 280ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 9s 965ms
/iceberg/iceberg engine/rest catalog/datatypes OK 15s 13ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 15s 12ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 4m 35s
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition OK 4m 35s
/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 1ms
/iceberg/iceberg engine/rest catalog/sort key timezone OK 12s 295ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and utc timezone OK 1s 795ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with hour transform and utc timezone OK 1s 745ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with month transform and utc timezone OK 1s 725ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with year transform and utc timezone OK 1s 769ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and positive utc offset timezone OK 1s 830ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and negative utc offset timezone OK 1s 715ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and timestamptz type OK 1s 709ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint OK 3s 504ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint/similar table names hint OK 3s 502ms
/iceberg/s3 table function OK 1s 480ms
/iceberg/s3 table function/s3 table function OK 1s 479ms
/iceberg/icebergS3 table function OK 2m 17s
/iceberg/icebergS3 table function/rest catalog OK 1m 12s
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 28s 53ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 1s 592ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 705ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 23s 39ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 1s 714ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 44s 10ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 16s 799ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 738ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 925ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 127ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 395ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 613ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 888ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 710ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 521ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 487ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 481ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 478ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 462ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 472ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 472ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 904ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 931ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 937ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 898ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 870ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 472ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 160ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 351ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 685ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 791ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 937ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 955ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 795ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 819ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 780ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 846ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 800ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 765ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 836ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 652ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 2s 352ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 2s 383ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 2s 226ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 2s 214ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 2s 204ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 573ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 457ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 644ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 840ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 62ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 279ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 864ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 669ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 444ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 210ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 194ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 191ms
/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 192ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 181ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 212ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 216ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 213ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 206ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 193ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 144ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 27s 208ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 313ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 508ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 719ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 962ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 167ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 1s 32ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 1s 21ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 1s 44ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 1s 79ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 1s 59ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 1s 76ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 1s 112ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 1s 115ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 1s 83ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 1s 76ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 1s 53ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 1s 50ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 997ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 978ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 973ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 2s 579ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 804ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 3s 100ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 3s 533ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 737ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 2s 520ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 2s 432ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 2s 445ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 2s 562ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 2s 582ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 2s 502ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 2s 533ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 2s 582ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 2s 597ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 2s 557ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 2s 527ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 2s 642ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 2s 615ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 2s 547ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 2s 522ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 495ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 697ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 925ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 126ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 447ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 965ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 769ms
/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 339ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 268ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 285ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 308ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 317ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 272ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 221ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 297ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 259ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 286ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 285ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 219ms
/iceberg/icebergS3 table function/glue catalog OK 1m 4s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 6s 929ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 735ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 772ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 1s 706ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 1s 711ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 58s 12ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 28s 695ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 1s 359ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 1s 564ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 778ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 961ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 2s 185ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 946ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 925ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 934ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 928ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 940ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 926ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 938ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 963ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 923ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 948ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 937ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 943ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 907ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 916ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 914ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 2s 480ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 886ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 3s 162ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 3s 526ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 743ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 2s 608ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 2s 640ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 2s 643ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 2s 557ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 2s 678ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 2s 499ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 2s 472ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 2s 508ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 2s 429ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 2s 493ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 2s 484ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 2s 518ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 2s 354ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 2s 450ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 2s 398ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 517ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 713ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 915ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 128ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 370ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 888ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 676ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 488ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 276ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 242ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 229ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 213ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 223ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 186ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 193ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 221ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 208ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 213ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 201ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 178ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 29s 314ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 307ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 529ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 782ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 2s 6ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 208ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 1s 43ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 1s 19ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 973ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 1s 6ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 1s 31ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 1s 94ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 1s 75ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 1s 41ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 1s 36ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 997ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 989ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 1s 10ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 999ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 965ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 981ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 2s 631ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 3s 29ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 3s 344ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 3s 530ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 756ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 2s 582ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 2s 562ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 2s 608ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 2s 630ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 2s 706ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 2s 541ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 2s 522ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 2s 620ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 2s 597ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 2s 690ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 2s 701ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 2s 619ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 2s 635ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 2s 503ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 2s 439ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 563ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 771ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 994ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 200ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 484ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 953ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 729ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 510ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 313ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 310ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 295ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕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 280ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 292ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 286ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 307ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 284ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 292ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 293ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 201ms
/iceberg/iceberg cache OK 1m 44s
/iceberg/iceberg cache/rest catalog OK 52s 277ms
/iceberg/iceberg cache/rest catalog/iceberg database engine OK 39s 191ms
/iceberg/iceberg cache/rest catalog/iceberg database engine/cache XFail 39s 190ms
/iceberg/iceberg cache/rest catalog/iceberg table engine OK 2s 497ms
/iceberg/iceberg cache/rest catalog/iceberg table engine/cache OK 2s 496ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function OK 10s 465ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cache XFail 10s 464ms
/iceberg/iceberg cache/glue catalog OK 51s 997ms
/iceberg/iceberg cache/glue catalog/iceberg database engine OK 39s 152ms
/iceberg/iceberg cache/glue catalog/iceberg database engine/cache XFail 39s 151ms
/iceberg/iceberg cache/glue catalog/iceberg table engine OK 2s 788ms
/iceberg/iceberg cache/glue catalog/iceberg table engine/cache OK 2s 787ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function OK 10s 54ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cache XFail 10s 53ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922