Iceberg Test Run Report

DateJun 02, 2026 14:55
Duration49m 40s
Framework TestFlows 2.0.250110.1002922

Artifacts

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

Attributes

projectAltinity/ClickHouse
project.id159717931
user.namestrtgbb
version26.3.10.20001.altinityantalya
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-26.3/0ef53ddec34514b1d64cb3b44a678f1350c72876/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash3dc71e7459ce4dc1762152aeae0986d9a3ccb54c
job.nameiceberg_1
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/26818784939
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-26.3/0ef53ddec34514b1d64cb3b44a678f1350c72876/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

99%OK
1%Known

Statistics

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

Known Fails

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

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

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

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

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

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

61\|              input_format_parquet_bloom_filter_push_down="0"
62\|          )
63\|          assert result.output.strip() == "", error()
64\|  
65\|      with And(f"check that 0 rows were read"):
66\|          read_rows = metrics.get_read_rows(
67\|              log_comment=log_comment_with_pruning,
68\|          )
69\|>         assert int(read_rows.output.strip()) == 0, error(
70\|              f"Expected 0 rows to be read, with where clause: {where_clause}, but got {read_rows.output.strip()}"
71\|          )
72\|
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float columnXFail 1s 253ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, 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 467, 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 2s 399ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, 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 467, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 53, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py", line 717, in feature
    Scenario(test=check_iceberg_partition_pruning_with_integer_type)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py", line 161, in check_iceberg_partition_pruning_with_integer_type
    assert int(s3_read_requests_count) <= max_count, error()
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

1155\|                  assert message in r.output, error(r.output)
1156\|  
1157\|          if not ignore_exception:
1158\|              if message is None or "Exception:" not in message:
1159\|                  with Then("check if output has exception") if steps else NullStep():
1160\|                      if "Exception:" in r.output:
1161\|                          if raise_on_exception:
1162\|                              raise QueryRuntimeException(r.output)
1163\|>                         assert False, error(r.output)
1164\|  
1165\|          return r
1166\|
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cacheXFail 6s 881ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, 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 483, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 16, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 80, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 44, in cache
    icebergS3.read_parquet_data_with_icebergS3_table_function(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/steps/icebergS3.py", line 304, in read_parquet_data_with_icebergS3_table_function
    node.query(query)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py", line 1163, in query
    assert False, error(r.output)
           ^^^^^
AssertionError: Oops! Assertion failed

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

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

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

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

1155\|                  assert message in r.output, error(r.output)
1156\|  
1157\|          if not ignore_exception:
1158\|              if message is None or "Exception:" not in message:
1159\|                  with Then("check if output has exception") if steps else NullStep():
1160\|                      if "Exception:" in r.output:
1161\|                          if raise_on_exception:
1162\|                              raise QueryRuntimeException(r.output)
1163\|>                         assert False, error(r.output)
1164\|  
1165\|          return r
1166\|
/iceberg/iceberg cache/glue catalog/iceberg database engine/cacheXFail 1s 658ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, 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 483, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 22, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 118, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 88, in cache
    _, cold_run_time = run_query_with_timing(
                       ^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 61, in run_query_with_timing
    result = iceberg_engine.read_data_from_clickhouse_iceberg_table(
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/steps/iceberg_engine.py", line 341, in read_data_from_clickhouse_iceberg_table
    result = node.query(
             ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py", line 1163, in query
    assert False, error(r.output)
           ^^^^^
AssertionError: Oops! Assertion failed

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

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

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

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

1155\|                  assert message in r.output, error(r.output)
1156\|  
1157\|          if not ignore_exception:
1158\|              if message is None or "Exception:" not in message:
1159\|                  with Then("check if output has exception") if steps else NullStep():
1160\|                      if "Exception:" in r.output:
1161\|                          if raise_on_exception:
1162\|                              raise QueryRuntimeException(r.output)
1163\|>                         assert False, error(r.output)
1164\|  
1165\|          return r
1166\|
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cacheXFail 6s 862ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, 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 483, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 28, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 80, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 44, in cache
    icebergS3.read_parquet_data_with_icebergS3_table_function(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/steps/icebergS3.py", line 304, in read_parquet_data_with_icebergS3_table_function
    node.query(query)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py", line 1163, in query
    assert False, error(r.output)
           ^^^^^
AssertionError: Oops! Assertion failed

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

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

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

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

1155\|                  assert message in r.output, error(r.output)
1156\|  
1157\|          if not ignore_exception:
1158\|              if message is None or "Exception:" not in message:
1159\|                  with Then("check if output has exception") if steps else NullStep():
1160\|                      if "Exception:" in r.output:
1161\|                          if raise_on_exception:
1162\|                              raise QueryRuntimeException(r.output)
1163\|>                         assert False, error(r.output)
1164\|  
1165\|          return r
1166\|

Results

Test Name Result Duration
/iceberg OK 49m 40s
/iceberg/iceberg engine OK 40m 7s
/iceberg/iceberg engine/rest catalog OK 40m 7s
/iceberg/iceberg engine/rest catalog/feature OK 30s 155ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 7s 679ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 8s 197ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 1s 240ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 1s 280ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 2s 375ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 908ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 906ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 983ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 1ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 1s 148ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 1s 109ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 72ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 1s 55ms
/iceberg/iceberg engine/rest catalog/feature/select from system databases OK 1s 193ms
/iceberg/iceberg engine/rest catalog/feature OK 8s 99ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 1s 875ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 46ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 2s 214ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 987ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 990ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 983ms
/iceberg/iceberg engine/rest catalog/column rbac OK 4m 49s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 2s 817ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 2s 815ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 2s 703ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 2s 871ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 2s 802ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 2s 752ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 2s 877ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 2s 795ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 2s 784ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 3s 56ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 2s 905ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 2s 820ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 2s 748ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 2s 791ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 2s 773ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 3s 407ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 3s 57ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 2s 878ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 2s 725ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 2s 758ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 2s 847ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 2s 744ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 2s 818ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 2s 745ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 2s 881ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 2s 704ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 2s 833ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 2s 776ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 2s 850ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 3s 38ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 2s 865ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 2s 853ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 2s 761ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 2s 971ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 2s 863ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 2s 795ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 2s 806ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 2s 849ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 2s 745ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 2s 749ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 2s 914ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 2s 785ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 3s 164ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 2s 922ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 2s 812ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 3s 116ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 2s 786ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 2s 991ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 2s 761ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 2s 828ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 2s 778ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 3s 90ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 2s 799ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 2s 907ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 2s 738ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 2s 768ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 2s 737ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 2s 882ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 2s 976ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 2s 828ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 3s 41ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 2s 810ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 2s 777ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 2s 854ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 2s 749ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 2s 799ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 2s 763ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 3s 170ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 2s 970ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 2s 816ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 2s 776ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 2s 898ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 2s 837ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 2s 788ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 2s 761ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 2s 910ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 3s 38ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 2s 743ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 3s 413ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 2s 820ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 2s 800ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 2s 858ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 2s 834ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 2s 971ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 2s 884ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 2s 936ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 2s 812ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 2s 957ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 2s 725ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 2s 850ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 3s 3ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 3s 413ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 3s 1ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 2s 748ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 2s 827ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 2s 822ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 2s 841ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 3s 443ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 2s 746ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 2s 981ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 30s 470ms
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 27s 952ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 1s 263ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 1s 253ms
/iceberg/iceberg engine/rest catalog/feature OK 4s 15ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 1s 317ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 1s 438ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 1s 259ms
/iceberg/iceberg engine/rest catalog/feature OK 44s 794ms
/iceberg/iceberg engine/rest catalog/feature/row policies OK 44s 793ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 439ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 467ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 410ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 375ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 453ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 424ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 427ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 421ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 452ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 464ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 454ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 412ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 399ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 377ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 374ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 383ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 422ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 440ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 441ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 430ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 414ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 418ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 412ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 445ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 447ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 382ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 472ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 463ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 408ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 459ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 433ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 416ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 438ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 429ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 448ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 380ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 423ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 422ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 450ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 380ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 378ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 411ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 379ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 440ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 416ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 437ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 441ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 414ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 452ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 406ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 391ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 449ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 409ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 468ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 420ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 421ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 474ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 469ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 450ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 373ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 428ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 441ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 432ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 426ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 436ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 415ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 415ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 444ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 407ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 405ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 448ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 385ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 465ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 417ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 476ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 418ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 414ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 418ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 374ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 432ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 466ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 426ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 387ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 406ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 466ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 419ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 384ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 456ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 446ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 449ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 392ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 374ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 420ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 443ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 383ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 406ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 438ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 411ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 420ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 414ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 2s 534ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 300ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 68ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 70ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 64ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 139ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 72ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 463ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 352ms
/iceberg/iceberg engine/rest catalog/feature OK 12m 46s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 12m 46s
/iceberg/iceberg engine/rest catalog/feature OK 2s 816ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 1s 348ms
/iceberg/iceberg engine/rest catalog/feature/append OK 1s 467ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 9m 55s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 5s 981ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 6s 557ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 6s 227ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 5s 915ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 5s 929ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 5s 882ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 5s 823ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 5s 940ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 6s 352ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 5s 890ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 6s 34ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 6s 286ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 6s 138ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 6s 223ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 6s 344ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 5s 868ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 5s 909ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 5s 942ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 6s 125ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 5s 756ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 6s 122ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 5s 840ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 5s 996ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 6s 40ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 5s 845ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 5s 831ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 5s 712ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 5s 983ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 5s 906ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 6s 0ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 5s 837ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 5s 889ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 5s 936ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 6s 70ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 5s 930ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 5s 834ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 6s 42ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 5s 944ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 5s 853ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 5s 968ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 5s 824ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 5s 909ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 5s 911ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 5s 830ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 5s 946ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 5s 824ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 5s 745ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 5s 735ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 6s 38ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 5s 808ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 6s 16ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 6s 33ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 5s 973ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 5s 769ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 5s 858ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 6s 29ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 5s 904ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 5s 884ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 5s 884ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 6s 168ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 6s 31ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 5s 902ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 5s 852ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 5s 879ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 5s 960ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 5s 940ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 5s 737ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 5s 524ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 5s 939ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 5s 699ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 5s 917ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 5s 914ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 6s 88ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 6s 123ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 6s 110ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 6s 164ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 6s 87ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 5s 589ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 5s 982ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 5s 995ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 5s 977ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 5s 863ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 6s 31ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 5s 644ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 6s 113ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 5s 855ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 6s 115ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 5s 995ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 6s 77ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 5s 861ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 6s 5ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 6s 306ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 5s 943ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 5s 971ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 5s 746ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 6s 4ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 5s 941ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 5s 774ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 5s 976ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 6s 149ms
/iceberg/iceberg engine/rest catalog/swarm OK 1s 862ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 1s 861ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 1m 5s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 1s 293ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 1s 471ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 1s 704ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 1s 803ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 1s 996ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 2s 236ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 2s 484ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 2s 745ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 2s 808ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 3s 22ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 3s 308ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 3s 567ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 3s 940ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 4s 98ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 4s 371ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 4s 669ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 4s 700ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 4s 926ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 5s 131ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 5s 707ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 5m 57s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 3s 476ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 3s 563ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 3s 454ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 3s 504ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 3s 512ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 3s 595ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 3s 515ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 3s 583ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 3s 467ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 3s 530ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 3s 600ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 3s 586ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 3s 570ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 3s 530ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 3s 520ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 3s 631ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 3s 555ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 3s 475ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 3s 543ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 3s 587ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 3s 480ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 3s 504ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 3s 553ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 3s 585ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 3s 521ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 3s 569ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 3s 518ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 3s 455ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 3s 499ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 3s 568ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 3s 505ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 3s 451ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 3s 562ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 3s 572ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 3s 470ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 3s 552ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 3s 538ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 3s 462ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 3s 690ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 3s 688ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 3s 602ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 3s 475ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 3s 436ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 3s 773ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 3s 496ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 3s 734ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 3s 687ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 3s 583ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 3s 559ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 3s 650ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 3s 665ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 3s 616ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 3s 644ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 3s 520ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 3s 572ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 3s 471ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 3s 625ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 3s 557ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 3s 629ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 3s 637ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 3s 588ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 3s 552ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 3s 657ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 3s 666ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 3s 623ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 3s 616ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 3s 541ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 3s 788ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 3s 562ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 3s 565ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 3s 623ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 3s 706ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 3s 617ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 3s 613ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 3s 620ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 3s 695ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 3s 603ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 3s 632ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 3s 448ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 3s 421ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 3s 496ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 3s 493ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 3s 593ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 3s 522ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 3s 512ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 3s 546ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 3s 582ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 3s 514ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 3s 524ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 3s 522ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 3s 596ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 3s 566ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 3s 715ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 3s 539ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 3s 613ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 3s 628ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 3s 644ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 3s 546ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 3s 611ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 3s 641ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 11s 406ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type XFail 2s 399ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause XFail 2s 58ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type XFail 2s 124ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 4s 822ms
/iceberg/iceberg engine/rest catalog/datatypes OK 8s 249ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 8s 249ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 2m 55s
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition OK 2m 55s
/iceberg/iceberg engine/rest catalog/dot separated column names OK 2s 142ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 1s 1ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 1s 140ms
/iceberg/iceberg engine/rest catalog/sort key timezone OK 7s 299ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and utc timezone OK 1s 46ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with hour transform and utc timezone OK 1s 34ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with month transform and utc timezone OK 1s 41ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with year transform and utc timezone OK 1s 39ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and positive utc offset timezone OK 1s 40ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and negative utc offset timezone OK 1s 45ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and timestamptz type OK 1s 49ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint OK 2s 70ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint/similar table names hint OK 2s 70ms
/iceberg/s3 table function OK 900ms
/iceberg/s3 table function/s3 table function OK 900ms
/iceberg/icebergS3 table function OK 1m 44s
/iceberg/icebergS3 table function/rest catalog OK 48s 233ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 24s 970ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 998ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 109ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 1s 22ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 21s 838ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 23s 252ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 9s 73ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 417ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 555ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 670ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 825ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 995ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 582ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 437ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 306ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 217ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 208ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 210ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 222ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 224ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 213ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 375ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 392ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 392ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 386ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 358ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 198ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 561ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 612ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 864ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 928ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 272ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 650ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 620ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 331ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 334ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 368ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 343ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 370ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 430ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 333ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 854ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 754ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 850ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 861ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 820ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 331ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 297ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 425ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 562ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 697ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 869ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 589ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 462ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 316ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 175ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 118ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 113ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 112ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 101ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 95ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 119ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 115ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 88ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 109ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 110ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 79ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 14s 178ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 593ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 745ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 894ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 64ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 237ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 656ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 499ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 424ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 424ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 429ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 417ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 431ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 434ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 434ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 440ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 416ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 423ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 410ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 380ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 346ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 928ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 137ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 411ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 594ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 735ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 912ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 947ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 955ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 881ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 941ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 1s 36ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 979ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 890ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 979ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 972ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 949ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 962ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 876ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 857ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 795ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 293ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 423ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 572ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 713ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 878ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 604ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 492ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 339ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 189ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 116ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 149ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 146ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 143ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 143ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 111ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 124ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 136ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 129ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 129ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 120ms
/iceberg/icebergS3 table function/glue catalog OK 56s 249ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 25s 167ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 76ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 72ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 21s 962ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 1s 54ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 31s 81ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 15s 70ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 588ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 740ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 889ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 33ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 185ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 598ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 439ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 375ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 399ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 383ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 389ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 403ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 392ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 401ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 397ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 390ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 374ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 375ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 345ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 330ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 966ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 114ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 374ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 473ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 691ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 903ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 906ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 894ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 842ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 810ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 897ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 893ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 951ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 938ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 892ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 845ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 857ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 845ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 843ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 807ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 297ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 431ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 582ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 710ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 897ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 595ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 454ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 285ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 162ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 96ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 98ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 104ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 102ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 102ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 105ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 104ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 100ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 107ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 100ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 95ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 16s 9ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 610ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 793ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 969ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 96ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 249ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 640ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 457ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 433ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 484ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 505ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 475ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 451ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 460ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 434ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 410ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 442ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 423ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 431ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 406ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 376ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 992ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 210ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 434ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 592ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 761ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 994ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 909ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 943ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 952ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 950ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 988ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 966ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 931ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 916ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 948ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 966ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 936ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 908ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 890ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 789ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 299ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 438ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 583ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 718ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 904ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 619ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 476ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 315ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 186ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 103ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 120ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 152ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 149ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 143ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 109ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 111ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 160ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 141ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 140ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 109ms
/iceberg/iceberg cache OK 20s 575ms
/iceberg/iceberg cache/rest catalog OK 10s 228ms
/iceberg/iceberg cache/rest catalog/iceberg database engine OK 1s 677ms
/iceberg/iceberg cache/rest catalog/iceberg database engine/cache XFail 1s 676ms
/iceberg/iceberg cache/rest catalog/iceberg table engine OK 1s 468ms
/iceberg/iceberg cache/rest catalog/iceberg table engine/cache OK 1s 467ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function OK 6s 882ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cache XFail 6s 881ms
/iceberg/iceberg cache/glue catalog OK 10s 346ms
/iceberg/iceberg cache/glue catalog/iceberg database engine OK 1s 658ms
/iceberg/iceberg cache/glue catalog/iceberg database engine/cache XFail 1s 658ms
/iceberg/iceberg cache/glue catalog/iceberg table engine OK 1s 823ms
/iceberg/iceberg cache/glue catalog/iceberg table engine/cache OK 1s 822ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function OK 6s 863ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cache XFail 6s 862ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922