Iceberg Test Run Report

DateSep 10, 2026 14:06
Duration1h 17m
Framework TestFlows 2.0.250110.1002922

Artifacts

Test artifacts can be found at https://altinity-build-artifacts.s3.amazonaws.com/index.html#REFs/v26.6.4.20001.altinityantalya/2073b1f88dec885444fac97edb8179ad1753c1ad/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
user.namestrtgbb
version26.6.4.20001.altinityantalya
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/v26.6.4.20001.altinityantalya/2073b1f88dec885444fac97edb8179ad1753c1ad/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash1b338607c602ca7076d7c73349bd199fe451bc60
job.nameiceberg_1
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/34481990917
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/v26.6.4.20001.altinityantalya/2073b1f88dec885444fac97edb8179ad1753c1ad/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
44
44
Scenarios
493
484
9
Checks
340
340
Steps
55852
55774
16
62

Known Fails

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

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

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

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

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

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

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

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

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

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

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

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

61\|              input_format_parquet_bloom_filter_push_down="0",
62\|          )
63\|          assert result.output.strip() == "", error()
64\|  
65\|      with And(f"check that 0 rows were read"):
66\|          read_rows = metrics.get_read_rows(
67\|              log_comment=log_comment_with_pruning,
68\|          )
69\|>         assert int(read_rows.output.strip()) == 0, error(
70\|              f"Expected 0 rows to be read, with where clause: {where_clause}, but got {read_rows.output.strip()}"
71\|          )
72\|
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer typeXFail 3s 676ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 716, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 56, 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 '54'
  assert int(s3_read_requests_count) <= max_count, error()
         ^ is = 54
  assert int(s3_read_requests_count) <= max_count, error()
                                        ^ is 53
  assert int(s3_read_requests_count) <= max_count, error()
                                     ^ is = False
  assert int(s3_read_requests_count) <= max_count, error()
  ^ is False

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

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

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

Assertion values
  assert int(s3_read_requests_count) <= 213, error()
             ^ is '214'
  assert int(s3_read_requests_count) <= 213, error()
         ^ is = 214
  assert int(s3_read_requests_count) <= 213, error()
                                     ^ is = False
  assert int(s3_read_requests_count) <= 213, error()
  ^ is False

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

391\|          ).output.strip()
392\|          assert int(partition_pruned_files) == 0, error()
393\|  
394\|      with And("check that S3ReadRequestsCount is correct"):
395\|          s3_read_requests_count = metrics.get_S3ReadRequestsCount(
396\|              log_comment=log_comment_without_partition_pruning,
397\|          ).output.strip()
398\|          assert 200 <= int(s3_read_requests_count), error()
399\|>         assert int(s3_read_requests_count) <= 213, error()
400\|  
401\|  
402\|  @TestScenario
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date typeXFail 4s 508ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 716, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 56, 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 549, in partition_pruning_with_date_type
    assert int(s3_read_requests_count) <= 213, error()
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

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

Assertion values
  assert int(s3_read_requests_count) <= 213, error()
             ^ is '214'
  assert int(s3_read_requests_count) <= 213, error()
         ^ is = 214
  assert int(s3_read_requests_count) <= 213, error()
                                     ^ is = False
  assert int(s3_read_requests_count) <= 213, error()
  ^ is False

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

541\|          ).output.strip()
542\|          assert int(partition_pruned_files) == 0, error()
543\|  
544\|      with And("check that S3ReadRequestsCount is correct"):
545\|          s3_read_requests_count = metrics.get_S3ReadRequestsCount(
546\|              log_comment=log_comment_without_partition_pruning,
547\|          ).output.strip()
548\|          assert 200 <= int(s3_read_requests_count), error()
549\|>         assert int(s3_read_requests_count) <= 213, error()
550\|  
551\|  
552\|  @TestScenario
/iceberg/iceberg cache/rest catalog/iceberg database engine/cacheXFail 2s 896ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 732, 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 353, in read_data_from_clickhouse_iceberg_table
    result = node.query(
             ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py", line 1289, 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 1289 in 'query'

1281\|                  assert message in r.output, error(r.output)
1282\|  
1283\|          if not ignore_exception:
1284\|              if message is None or "Exception:" not in message:
1285\|                  with Then("check if output has exception") if steps else NullStep():
1286\|                      if "Exception:" in r.output:
1287\|                          if raise_on_exception:
1288\|                              raise QueryRuntimeException(r.output)
1289\|>                         assert False, error(r.output)
1290\|  
1291\|          return r
1292\|
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cacheXFail 11s 691ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 732, 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 315, in read_parquet_data_with_icebergS3_table_function
    node.query(query)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py", line 1289, 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.6.4):
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_67e32778_ad2b_11f1_a2f6_920009b02bb1', 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 1289 in 'query'

1281\|                  assert message in r.output, error(r.output)
1282\|  
1283\|          if not ignore_exception:
1284\|              if message is None or "Exception:" not in message:
1285\|                  with Then("check if output has exception") if steps else NullStep():
1286\|                      if "Exception:" in r.output:
1287\|                          if raise_on_exception:
1288\|                              raise QueryRuntimeException(r.output)
1289\|>                         assert False, error(r.output)
1290\|  
1291\|          return r
1292\|
/iceberg/iceberg cache/glue catalog/iceberg database engine/cacheXFail 2s 747ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 732, 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 353, in read_data_from_clickhouse_iceberg_table
    result = node.query(
             ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py", line 1289, 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 1289 in 'query'

1281\|                  assert message in r.output, error(r.output)
1282\|  
1283\|          if not ignore_exception:
1284\|              if message is None or "Exception:" not in message:
1285\|                  with Then("check if output has exception") if steps else NullStep():
1286\|                      if "Exception:" in r.output:
1287\|                          if raise_on_exception:
1288\|                              raise QueryRuntimeException(r.output)
1289\|>                         assert False, error(r.output)
1290\|  
1291\|          return r
1292\|
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cacheXFail 11s 756ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 732, 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 315, in read_parquet_data_with_icebergS3_table_function
    node.query(query)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py", line 1289, 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.6.4):
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_723f6f70_ad2b_11f1_b9dc_920009b02bb1', 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 1289 in 'query'

1281\|                  assert message in r.output, error(r.output)
1282\|  
1283\|          if not ignore_exception:
1284\|              if message is None or "Exception:" not in message:
1285\|                  with Then("check if output has exception") if steps else NullStep():
1286\|                      if "Exception:" in r.output:
1287\|                          if raise_on_exception:
1288\|                              raise QueryRuntimeException(r.output)
1289\|>                         assert False, error(r.output)
1290\|  
1291\|          return r
1292\|

Results

Test Name Result Duration
/iceberg OK 1h 17m
/iceberg/iceberg engine OK 1h 10m
/iceberg/iceberg engine/rest catalog OK 1h 10m
/iceberg/iceberg engine/rest catalog/feature OK 44s 444ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 4s 509ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 15s 39ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 2s 88ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 364ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 4s 357ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 542ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 528ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 718ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 696ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 2s 60ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 2s 2ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 874ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 1s 812ms
/iceberg/iceberg engine/rest catalog/feature/select from system databases OK 1s 842ms
/iceberg/iceberg engine/rest catalog/feature OK 12s 405ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 2s 369ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 725ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 3s 695ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 511ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 568ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 1s 530ms
/iceberg/iceberg engine/rest catalog/column rbac OK 8m 52s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 5s 299ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 5s 283ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 5s 71ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 5s 309ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 5s 279ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 5s 119ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 5s 318ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 5s 301ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 5s 249ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 5s 666ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 5s 452ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 5s 224ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 5s 108ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 5s 162ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 5s 81ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 6s 227ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 5s 664ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 5s 306ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 5s 24ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 5s 84ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 5s 260ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 5s 116ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 5s 233ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 5s 41ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 5s 306ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 5s 49ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 5s 216ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 5s 104ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 5s 244ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 5s 403ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 5s 197ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 5s 184ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 5s 115ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 5s 448ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 5s 183ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 5s 96ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 5s 79ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 5s 252ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 5s 147ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 5s 125ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 5s 284ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 5s 86ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 5s 817ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 5s 355ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 5s 91ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 5s 600ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 5s 203ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 5s 424ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 4s 986ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 5s 231ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 5s 41ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 5s 688ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 5s 123ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 5s 357ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 5s 1ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 5s 37ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 4s 997ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 5s 275ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 5s 387ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 5s 173ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 5s 610ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 5s 248ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 5s 126ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 5s 169ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 5s 66ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 5s 112ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 5s 87ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 5s 782ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 5s 439ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 5s 172ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 5s 178ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 5s 349ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 5s 327ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 5s 54ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 5s 71ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 5s 284ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 5s 643ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 4s 954ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 6s 194ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 5s 193ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 5s 122ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 5s 165ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 5s 177ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 5s 360ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 5s 178ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 5s 438ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 5s 111ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 5s 417ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 5s 11ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 5s 211ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 5s 442ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 6s 237ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 5s 393ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 4s 953ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 5s 233ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 5s 68ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 5s 153ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 6s 299ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 5s 162ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 5s 546ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 56s 579ms
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 52s 197ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 2s 211ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 2s 168ms
/iceberg/iceberg engine/rest catalog/rbac OK 6s 937ms
/iceberg/iceberg engine/rest catalog/rbac/select privilege OK 2s 240ms
/iceberg/iceberg engine/rest catalog/rbac/drop table privilege OK 2s 500ms
/iceberg/iceberg engine/rest catalog/rbac/drop database privilege OK 2s 195ms
/iceberg/iceberg engine/rest catalog/row policy OK 1m 23s
/iceberg/iceberg engine/rest catalog/row policy/row policies OK 1m 23s
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #0 OK 841ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #1 OK 833ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #2 OK 788ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #3 OK 715ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #4 OK 866ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #5 OK 826ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #6 OK 801ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #7 OK 777ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #8 OK 838ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #9 OK 812ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #10 OK 826ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #11 OK 814ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #12 OK 755ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #13 OK 717ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #14 OK 706ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #15 OK 715ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #16 OK 825ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #17 OK 836ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #18 OK 826ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #19 OK 806ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #20 OK 755ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #21 OK 794ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #22 OK 760ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #23 OK 829ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #24 OK 819ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #25 OK 704ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #26 OK 909ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #27 OK 821ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #28 OK 771ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #29 OK 871ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #30 OK 818ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #31 OK 758ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #32 OK 829ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #33 OK 859ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #34 OK 856ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #35 OK 713ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #36 OK 785ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #37 OK 767ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #38 OK 814ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #39 OK 705ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #40 OK 698ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #41 OK 790ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #42 OK 723ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #43 OK 828ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #44 OK 756ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #45 OK 840ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #46 OK 811ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #47 OK 773ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #48 OK 847ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #49 OK 772ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #50 OK 686ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #51 OK 831ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #52 OK 769ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #53 OK 854ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #54 OK 776ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #55 OK 746ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #56 OK 845ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #57 OK 851ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #58 OK 840ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #59 OK 721ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #60 OK 815ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #61 OK 849ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #62 OK 813ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #63 OK 708ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #64 OK 822ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #65 OK 781ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #66 OK 780ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #67 OK 833ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #68 OK 768ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #69 OK 762ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #70 OK 834ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #71 OK 740ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #72 OK 847ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #73 OK 769ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #74 OK 841ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #75 OK 773ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #76 OK 770ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #77 OK 777ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #78 OK 697ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #79 OK 836ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #80 OK 853ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #81 OK 816ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #82 OK 697ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #83 OK 773ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #84 OK 868ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #85 OK 773ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #86 OK 707ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #87 OK 829ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #88 OK 817ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #89 OK 825ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #90 OK 736ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #91 OK 729ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #92 OK 753ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #93 OK 828ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #94 OK 697ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #95 OK 785ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #96 OK 859ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #97 OK 752ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #98 OK 765ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #99 OK 774ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 4s 415ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 546ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 131ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 130ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 128ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 252ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 133ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 807ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 659ms
/iceberg/iceberg engine/rest catalog/equality delete reads OK 23m 4s
/iceberg/iceberg engine/rest catalog/equality delete reads/run equality deletes combinations OK 23m 4s
/iceberg/iceberg engine/rest catalog/position delete reads OK 3s 128ms
/iceberg/iceberg engine/rest catalog/position delete reads/read position deletes OK 3s 127ms
/iceberg/iceberg engine/rest catalog/overwrite OK 4s 518ms
/iceberg/iceberg engine/rest catalog/overwrite/overwrite OK 2s 276ms
/iceberg/iceberg engine/rest catalog/overwrite/append OK 2s 240ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 18m 4s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 10s 852ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 11s 165ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 11s 193ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 10s 622ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 10s 831ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 10s 667ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 10s 605ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 11s 77ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 10s 851ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 10s 491ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 10s 661ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 11s 58ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 10s 930ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 10s 966ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 11s 87ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 10s 677ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 10s 737ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 11s 19ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 10s 923ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 10s 588ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 11s 232ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 10s 649ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 10s 985ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 11s 103ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 10s 708ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 10s 769ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 10s 391ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 11s 145ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 10s 826ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 11s 59ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 10s 806ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 11s 52ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 11s 77ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 10s 659ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 10s 765ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 10s 658ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 11s 124ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 11s 29ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 10s 613ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 11s 105ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 10s 706ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 10s 958ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 10s 649ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 10s 533ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 10s 851ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 10s 759ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 10s 750ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 10s 773ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 11s 34ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 10s 524ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 10s 941ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 11s 192ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 10s 916ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 10s 695ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 10s 728ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 10s 750ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 10s 992ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 10s 746ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 10s 750ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 11s 220ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 11s 69ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 10s 708ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 10s 841ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 10s 516ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 10s 797ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 11s 8ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 10s 571ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 10s 216ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 10s 902ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 10s 482ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 10s 852ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 10s 845ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 11s 317ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 11s 248ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 10s 895ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 11s 160ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 10s 651ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 10s 272ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 11s 97ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 10s 982ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 10s 912ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 10s 841ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 11s 95ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 10s 386ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 11s 44ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 10s 761ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 10s 807ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 10s 658ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 10s 583ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 10s 749ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 10s 754ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 10s 897ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 10s 691ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 10s 783ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 10s 652ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 11s 231ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 11s 88ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 10s 736ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 10s 899ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 11s 36ms
/iceberg/iceberg engine/rest catalog/swarm OK 2s 777ms
/iceberg/iceberg engine/rest catalog/swarm/feature support validation OK 573us
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 663ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 2m 4s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 2s 191ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 675ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 3s 209ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 3s 221ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 3s 896ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 4s 406ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 4s 443ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 5s 186ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 5s 456ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 5s 844ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 6s 485ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 6s 765ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 7s 301ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 7s 906ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 7s 687ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 8s 898ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 8s 737ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 9s 245ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 9s 798ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 10s 999ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 9m 26s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 5s 415ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 5s 727ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 5s 529ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 5s 498ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 5s 641ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 5s 591ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 5s 690ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 5s 733ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 5s 624ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 5s 749ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 5s 619ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 5s 442ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 5s 467ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 5s 584ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 5s 484ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 5s 469ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 5s 635ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 5s 682ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 5s 463ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 5s 632ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 5s 580ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 5s 774ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 5s 753ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 5s 763ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 5s 331ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 5s 450ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 5s 626ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 5s 606ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 5s 483ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 5s 618ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 5s 424ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 5s 798ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 5s 960ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 5s 853ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 6s 224ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 5s 852ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 5s 746ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 5s 938ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 6s 50ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 5s 801ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 6s 4ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 5s 802ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 5s 773ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 5s 931ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 5s 905ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 5s 907ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 5s 875ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 5s 825ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 5s 708ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 5s 968ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 6s 42ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 5s 729ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 5s 969ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 5s 665ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 5s 500ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 5s 593ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 5s 668ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 5s 548ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 5s 703ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 5s 776ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 5s 681ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 5s 659ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 5s 621ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 825ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 5s 534ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 5s 821ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 5s 573ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 5s 538ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 5s 599ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 5s 634ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 5s 686ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 5s 497ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 5s 335ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 5s 624ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 5s 867ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 5s 676ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 5s 632ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 5s 520ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 5s 465ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 5s 666ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 5s 412ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 5s 570ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 5s 558ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 5s 416ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 5s 568ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 5s 520ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 5s 669ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 5s 422ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 5s 646ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 5s 582ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 5s 626ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 5s 486ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 5s 596ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 5s 465ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 5s 471ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 5s 657ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 5s 772ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 5s 690ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 5s 645ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 5s 579ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 22s 386ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type XFail 3s 676ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause XFail 4s 740ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type XFail 4s 508ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 9s 458ms
/iceberg/iceberg engine/rest catalog/datatypes OK 14s 800ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 14s 799ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 4m 25s
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/feature support validation OK 485us
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition OK 4m 25s
/iceberg/iceberg engine/rest catalog/dot separated column names OK 3s 684ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 1s 634ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 2s 47ms
/iceberg/iceberg engine/rest catalog/sort key timezone OK 12s 367ms
/iceberg/iceberg engine/rest catalog/sort key timezone/feature support validation OK 502us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and utc timezone OK 1s 738ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with hour transform and utc timezone OK 1s 743ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with month transform and utc timezone OK 1s 747ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with year transform and utc timezone OK 1s 766ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and positive utc offset timezone OK 1s 748ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and negative utc offset timezone OK 1s 739ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and timestamptz type OK 1s 755ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint OK 3s 914ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint/similar table names hint OK 3s 914ms
/iceberg/s3 table function OK 1s 485ms
/iceberg/s3 table function/s3 table function OK 1s 484ms
/iceberg/icebergS3 table function OK 2m 16s
/iceberg/icebergS3 table function/rest catalog OK 1m 13s
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 28s 362ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 1s 662ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 792ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 23s 212ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 1s 693ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 44s 871ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 18s 399ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 800ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 986ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 202ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 424ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 607ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 816ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 619ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 568ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 540ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 527ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 528ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 538ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 543ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 958ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 896ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 892ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 922ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 913ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 588ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 516ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 81ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 396ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 655ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 893ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 2s 558ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 31ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 344ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 799ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 733ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 859ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 888ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 948ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 1s 331ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 1s 624ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 627ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 696ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 785ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 787ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 131ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 126ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 463ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 675ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 860ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 69ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 300ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 864ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 644ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 465ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 267ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 217ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 222ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 214ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 184ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 189ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 156ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 198ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 175ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 192ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 179ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 155ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 26s 471ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 281ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 484ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 678ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 907ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 111ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 983ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 972ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 1s 3ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 1s 7ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 1s 13ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 1s 7ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 994ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 993ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 1s 3ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 999ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 978ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 971ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 944ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 946ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 892ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 858ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 152ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 496ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 838ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 124ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 969ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 2s 54ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 2s 20ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 2s 18ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 2s 61ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 1s 997ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 2s 42ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 2s 35ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 1s 992ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 2s 31ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 2s 32ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 2s 86ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 999ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 2s 54ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 942ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 468ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 667ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 860ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 77ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 361ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 925ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 731ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 510ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 255ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 236ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 218ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 236ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 292ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 233ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 231ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 244ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 224ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 234ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 211ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 177ms
/iceberg/icebergS3 table function/glue catalog OK 1m 3s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 7s 49ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 727ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 786ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 1s 770ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 1s 763ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 56s 489ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 27s 582ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 1s 211ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 1s 392ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 605ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 844ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 2s 46ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 943ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 973ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 956ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 956ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 978ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 923ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 945ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 940ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 939ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 931ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 925ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 905ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 899ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 864ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 892ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 945ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 222ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 655ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 902ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 210ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 994ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 991ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 931ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 2s 3ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 2s 19ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 2s 32ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 2s 1ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 1s 939ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 1s 990ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 982ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 932ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 2s 0ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 844ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 755ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 698ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 481ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 687ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 874ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 77ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 320ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 864ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 650ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 438ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 240ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 214ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 237ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 209ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 213ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 222ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 185ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 225ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 218ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 219ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 211ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 171ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 28s 905ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 199ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 470ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 673ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 904ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 130ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 960ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 976ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 993ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 992ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 1s 32ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 1s 4ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 977ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 1s 17ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 1s 18ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 990ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 964ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 975ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 914ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 886ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 889ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 980ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 281ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 664ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 977ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 336ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 995ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 2s 42ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 964ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 2s 48ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 2s 24ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 2s 21ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 2s 100ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 2s 38ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 2s 40ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 2s 45ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 990ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 987ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 957ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 860ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 846ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 493ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 695ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 896ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 116ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 409ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 905ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 732ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 484ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 265ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 236ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 254ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 246ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 276ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 275ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 218ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 238ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 237ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 256ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 249ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 184ms
/iceberg/iceberg cache OK 34s 728ms
/iceberg/iceberg cache/rest catalog OK 17s 443ms
/iceberg/iceberg cache/rest catalog/iceberg database engine OK 2s 897ms
/iceberg/iceberg cache/rest catalog/iceberg database engine/cache XFail 2s 896ms
/iceberg/iceberg cache/rest catalog/iceberg table engine OK 2s 722ms
/iceberg/iceberg cache/rest catalog/iceberg table engine/cache OK 2s 721ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function OK 11s 693ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cache XFail 11s 691ms
/iceberg/iceberg cache/glue catalog OK 17s 283ms
/iceberg/iceberg cache/glue catalog/iceberg database engine OK 2s 748ms
/iceberg/iceberg cache/glue catalog/iceberg database engine/cache XFail 2s 747ms
/iceberg/iceberg cache/glue catalog/iceberg table engine OK 2s 775ms
/iceberg/iceberg cache/glue catalog/iceberg table engine/cache OK 2s 774ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function OK 11s 757ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cache XFail 11s 756ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922