Iceberg Test Run Report

DateAug 26, 2026 14:04
Duration1h 18m
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.2.20001.altinityantalya/fc67ca28aab7152e20b92777c5caae12dba635c2/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
user.namestrtgbb
version26.6.2.20001.altinityantalya
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/v26.6.2.20001.altinityantalya/fc67ca28aab7152e20b92777c5caae12dba635c2/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash6948a427a0e1f559a448cdb2cd5f7951ffbdd258
job.nameiceberg_1
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/32969478793
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/v26.6.2.20001.altinityantalya/fc67ca28aab7152e20b92777c5caae12dba635c2/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
55834
55756
16
62

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal columnXFail 2s 209ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 714, 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 676, 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 174ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 714, 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 676, 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 755ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 714, 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 676, 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 '74'
  assert int(s3_read_requests_count) <= max_count, error()
         ^ is = 74
  assert int(s3_read_requests_count) <= max_count, error()
                                        ^ is 53
  assert int(s3_read_requests_count) <= max_count, error()
                                     ^ is = False
  assert int(s3_read_requests_count) <= max_count, error()
  ^ is False

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

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

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

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

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

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

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

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

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

504\|              assert int(min_max_pruned_files) == 0, error()
505\|  
506\|      with And("check that S3ReadRequestsCount is correct"):
507\|          s3_read_requests_count = metrics.get_S3ReadRequestsCount(
508\|              log_comment=log_comment_with_partition_pruning,
509\|          ).output.strip()
510\|          if check_clickhouse_version(">=25.3")(self) or check_if_antalya_build(self):
511\|              assert 137 <= int(s3_read_requests_count), error()
512\|>             assert int(s3_read_requests_count) <= 150, error()
513\|          else:
514\|              assert 200 <= int(s3_read_requests_count), error()
515\|              assert int(s3_read_requests_count) <= 210, error()
/iceberg/iceberg cache/rest catalog/iceberg database engine/cacheXFail 2s 831ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 714, 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 692, 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 718ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 714, 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 692, 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.2):
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_b9a7719d_a161_11f1_b1aa_920009ae1d7d', 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 835ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 714, 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 692, 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 963ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 714, 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 692, 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.2):
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_c43e3829_a161_11f1_b3ce_920009ae1d7d', 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 18m
/iceberg/iceberg engine OK 1h 10m
/iceberg/iceberg engine/rest catalog OK 1h 10m
/iceberg/iceberg engine/rest catalog/feature OK 43s 367ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 4s 447ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 14s 788ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 2s 26ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 277ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 4s 211ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 471ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 465ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 651ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 597ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 1s 973ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 1s 955ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 869ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 1s 801ms
/iceberg/iceberg engine/rest catalog/feature/select from system databases OK 1s 822ms
/iceberg/iceberg engine/rest catalog/feature OK 11s 992ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 2s 330ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 667ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 3s 602ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 460ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 481ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 1s 447ms
/iceberg/iceberg engine/rest catalog/column rbac OK 8m 48s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 5s 198ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 5s 160ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 4s 920ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 5s 176ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 5s 102ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 5s 8ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 5s 225ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 5s 259ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 5s 106ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 5s 504ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 5s 225ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 5s 204ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 4s 944ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 5s 58ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 4s 992ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 6s 39ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 5s 590ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 5s 142ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 4s 917ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 5s 136ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 5s 183ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 4s 949ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 5s 76ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 4s 898ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 5s 223ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 4s 986ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 5s 96ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 5s 10ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 5s 124ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 5s 317ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 5s 136ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 5s 129ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 5s 21ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 5s 289ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 5s 64ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 4s 954ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 4s 907ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 5s 70ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 4s 953ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 4s 953ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 5s 198ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 5s 36ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 5s 782ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 5s 293ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 5s 13ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 5s 448ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 5s 81ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 5s 309ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 4s 947ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 5s 143ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 4s 963ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 5s 536ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 4s 945ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 5s 269ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 5s 11ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 5s 4ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 5s 120ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 5s 400ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 5s 569ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 5s 321ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 5s 758ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 5s 293ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 5s 244ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 5s 345ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 5s 200ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 5s 347ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 5s 305ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 5s 901ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 5s 623ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 5s 266ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 5s 257ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 5s 406ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 5s 427ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 5s 231ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 5s 116ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 5s 433ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 5s 896ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 5s 176ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 6s 137ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 5s 139ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 5s 88ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 5s 123ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 5s 121ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 5s 352ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 5s 155ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 5s 346ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 5s 6ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 5s 364ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 5s 27ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 5s 175ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 5s 367ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 6s 222ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 5s 315ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 4s 960ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 5s 97ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 5s 14ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 5s 149ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 6s 148ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 5s 28ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 5s 596ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 55s 991ms
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 51s 604ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 2s 209ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 2s 174ms
/iceberg/iceberg engine/rest catalog/rbac OK 6s 935ms
/iceberg/iceberg engine/rest catalog/rbac/select privilege OK 2s 223ms
/iceberg/iceberg engine/rest catalog/rbac/drop table privilege OK 2s 551ms
/iceberg/iceberg engine/rest catalog/rbac/drop database privilege OK 2s 159ms
/iceberg/iceberg engine/rest catalog/row policy OK 1m 22s
/iceberg/iceberg engine/rest catalog/row policy/row policies OK 1m 22s
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #0 OK 825ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #1 OK 827ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #2 OK 750ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #3 OK 691ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #4 OK 851ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #5 OK 822ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #6 OK 784ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #7 OK 779ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #8 OK 797ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #9 OK 808ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #10 OK 814ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #11 OK 784ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #12 OK 741ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #13 OK 710ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #14 OK 700ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #15 OK 690ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #16 OK 790ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #17 OK 814ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #18 OK 813ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #19 OK 779ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #20 OK 757ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #21 OK 757ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #22 OK 753ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #23 OK 833ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #24 OK 786ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #25 OK 692ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #26 OK 890ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #27 OK 845ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #28 OK 762ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #29 OK 839ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #30 OK 814ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #31 OK 769ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #32 OK 806ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #33 OK 806ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #34 OK 813ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #35 OK 693ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #36 OK 770ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #37 OK 736ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #38 OK 810ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #39 OK 704ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #40 OK 713ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #41 OK 768ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #42 OK 688ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #43 OK 805ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #44 OK 741ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #45 OK 793ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #46 OK 851ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #47 OK 782ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #48 OK 816ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #49 OK 766ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #50 OK 709ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #51 OK 802ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #52 OK 747ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #53 OK 823ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #54 OK 786ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #55 OK 770ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #56 OK 868ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #57 OK 842ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #58 OK 819ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #59 OK 698ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #60 OK 816ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #61 OK 817ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #62 OK 866ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #63 OK 735ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #64 OK 807ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #65 OK 765ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #66 OK 747ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #67 OK 832ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #68 OK 742ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #69 OK 763ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #70 OK 809ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #71 OK 699ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #72 OK 825ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #73 OK 756ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #74 OK 789ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #75 OK 777ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #76 OK 774ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #77 OK 755ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #78 OK 703ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #79 OK 804ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #80 OK 865ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #81 OK 795ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #82 OK 723ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #83 OK 749ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #84 OK 864ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #85 OK 759ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #86 OK 717ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #87 OK 851ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #88 OK 810ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #89 OK 814ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #90 OK 730ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #91 OK 687ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #92 OK 746ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #93 OK 805ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #94 OK 694ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #95 OK 769ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #96 OK 800ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #97 OK 748ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #98 OK 780ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #99 OK 750ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 4s 378ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 555ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 128ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 125ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 127ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 251ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 128ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 808ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 639ms
/iceberg/iceberg engine/rest catalog/equality delete reads OK 23m 0s
/iceberg/iceberg engine/rest catalog/equality delete reads/run equality deletes combinations OK 23m 0s
/iceberg/iceberg engine/rest catalog/position delete reads OK 3s 62ms
/iceberg/iceberg engine/rest catalog/position delete reads/read position deletes OK 3s 58ms
/iceberg/iceberg engine/rest catalog/overwrite OK 4s 515ms
/iceberg/iceberg engine/rest catalog/overwrite/overwrite OK 2s 267ms
/iceberg/iceberg engine/rest catalog/overwrite/append OK 2s 245ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 17m 54s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 10s 620ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 11s 305ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 11s 222ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 10s 556ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 10s 594ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 10s 681ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 10s 455ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 10s 899ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 10s 805ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 10s 469ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 10s 620ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 10s 983ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 10s 837ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 10s 838ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 11s 6ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 10s 354ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 10s 904ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 10s 866ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 10s 940ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 10s 553ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 11s 32ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 10s 468ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 10s 794ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 11s 77ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 10s 688ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 10s 644ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 10s 256ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 11s 33ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 10s 785ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 10s 903ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 10s 773ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 10s 799ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 10s 921ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 10s 584ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 10s 817ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 10s 656ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 11s 45ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 10s 799ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 10s 419ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 10s 832ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 10s 767ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 10s 755ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 10s 653ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 10s 603ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 10s 763ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 10s 532ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 10s 647ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 10s 590ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 10s 804ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 10s 399ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 10s 702ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 10s 991ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 10s 915ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 10s 608ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 10s 536ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 10s 645ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 10s 851ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 10s 786ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 10s 700ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 11s 225ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 10s 979ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 10s 699ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 10s 837ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 10s 569ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 10s 808ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 10s 804ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 10s 425ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 10s 257ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 10s 859ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 10s 546ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 10s 814ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 10s 672ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 11s 288ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 11s 172ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 11s 67ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 10s 992ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 10s 559ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 10s 278ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 11s 104ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 10s 964ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 10s 975ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 10s 649ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 11s 4ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 10s 346ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 10s 951ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 10s 686ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 10s 609ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 10s 592ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 10s 624ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 10s 563ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 10s 769ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 10s 768ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 10s 455ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 10s 607ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 10s 240ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 10s 683ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 10s 960ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 10s 501ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 10s 710ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 10s 956ms
/iceberg/iceberg engine/rest catalog/swarm OK 3s 87ms
/iceberg/iceberg engine/rest catalog/swarm/feature support validation OK 514us
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 969ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 2m 4s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 2s 246ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 766ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 3s 235ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 3s 517ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 3s 617ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 4s 284ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 4s 736ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 5s 2ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 5s 444ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 5s 879ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 6s 90ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 6s 693ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 7s 187ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 7s 831ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 8s 173ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 8s 958ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 9s 469ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 9s 105ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 10s 69ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 10s 186ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 9m 25s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 5s 423ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 5s 666ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 5s 732ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 5s 718ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 5s 689ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 5s 521ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 5s 657ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 5s 801ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 5s 690ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 5s 787ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 5s 614ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 5s 550ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 5s 639ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 5s 850ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 5s 583ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 5s 549ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 5s 688ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 5s 756ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 5s 573ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 5s 801ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 5s 563ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 5s 513ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 5s 813ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 5s 834ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 5s 442ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 5s 500ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 5s 572ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 5s 592ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 5s 523ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 5s 607ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 5s 524ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 5s 584ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 5s 653ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 5s 609ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 5s 887ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 5s 805ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 5s 411ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 5s 849ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 5s 718ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 5s 574ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 5s 714ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 5s 786ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 5s 600ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 5s 562ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 5s 664ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 6s 10ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 5s 621ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 5s 665ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 5s 721ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 5s 562ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 5s 826ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 5s 578ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 5s 749ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 5s 604ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 5s 503ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 5s 902ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 5s 851ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 5s 508ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 5s 787ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 5s 725ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 5s 577ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 5s 560ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 5s 695ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 796ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 5s 668ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 5s 900ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 5s 709ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 5s 574ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 5s 753ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 5s 683ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 5s 654ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 5s 525ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 5s 348ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 5s 737ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 5s 881ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 5s 819ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 5s 820ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 5s 441ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 5s 378ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 5s 618ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 5s 630ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 5s 597ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 5s 561ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 5s 565ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 5s 732ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 5s 589ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 5s 655ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 5s 610ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 5s 579ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 5s 877ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 5s 638ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 5s 495ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 5s 612ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 5s 366ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 5s 669ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 5s 626ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 5s 729ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 5s 748ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 5s 856ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 5s 604ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 20s 848ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type XFail 3s 755ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause XFail 3s 913ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type XFail 3s 694ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 9s 481ms
/iceberg/iceberg engine/rest catalog/datatypes OK 14s 816ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 14s 816ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 4m 47s
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/feature support validation OK 500us
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition OK 4m 47s
/iceberg/iceberg engine/rest catalog/dot separated column names OK 3s 634ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 1s 617ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 2s 15ms
/iceberg/iceberg engine/rest catalog/sort key timezone OK 12s 633ms
/iceberg/iceberg engine/rest catalog/sort key timezone/feature support validation OK 448us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and utc timezone OK 1s 816ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with hour transform and utc timezone OK 1s 778ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with month transform and utc timezone OK 1s 780ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with year transform and utc timezone OK 1s 801ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and positive utc offset timezone OK 1s 771ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and negative utc offset timezone OK 1s 797ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and timestamptz type OK 1s 769ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint OK 3s 838ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint/similar table names hint OK 3s 836ms
/iceberg/s3 table function OK 1s 537ms
/iceberg/s3 table function/s3 table function OK 1s 536ms
/iceberg/icebergS3 table function OK 2m 42s
/iceberg/icebergS3 table function/rest catalog OK 1m 14s
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 28s 493ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 1s 627ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 813ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 1s 799ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 23s 250ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 46s 339ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 18s 648ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 804ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 998ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 216ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 416ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 636ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 827ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 636ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 573ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 566ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 553ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 510ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 525ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 603ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 964ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 915ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 933ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 968ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 909ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 618ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 509ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 998ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 320ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 580ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 844ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 2s 86ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 215ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 954ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 918ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 918ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 986ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 1s 41ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 1s 474ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 941ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 1s 704ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 733ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 809ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 854ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 968ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 274ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 278ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 462ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 644ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 848ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 40ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 273ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 822ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 650ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 449ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 243ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 190ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 194ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 191ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 192ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 209ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 198ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 195ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 193ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 197ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 177ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 157ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 27s 690ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 256ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 445ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 706ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 924ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 130ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 1s 40ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 995ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 1s 0ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 1s 40ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 1s 44ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 1s 83ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 1s 70ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 1s 27ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 1s 22ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 1s 44ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 1s 30ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 1s 15ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 977ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 941ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 950ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 921ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 223ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 619ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 3s 97ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 327ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 2s 220ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 2s 136ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 2s 154ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 2s 251ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 2s 228ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 2s 364ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 2s 221ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 2s 240ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 2s 247ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 2s 297ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 2s 243ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 2s 226ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 2s 106ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 2s 68ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 978ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 504ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 683ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 900ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 92ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 385ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 873ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 663ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 454ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 327ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 233ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 288ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 241ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 260ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 274ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 236ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 275ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 267ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 247ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 244ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 186ms
/iceberg/icebergS3 table function/glue catalog OK 1m 27s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 28s 772ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 776ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 760ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 23s 522ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 1s 710ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 58s 571ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 28s 589ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 1s 266ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 1s 436ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 635ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 849ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 2s 33ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 925ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 976ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 952ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 962ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 1s 13ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 1s 9ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 973ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 999ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 972ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 951ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 1s 12ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 987ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 951ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 913ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 934ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 928ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 395ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 759ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 3s 99ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 313ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 2s 164ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 2s 106ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 2s 78ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 2s 210ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 2s 273ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 2s 237ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 2s 236ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 2s 103ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 2s 206ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 2s 125ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 2s 50ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 2s 79ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 2s 111ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 2s 44ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 2s 54ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 473ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 666ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 875ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 98ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 321ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 855ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 676ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 459ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 245ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 194ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 242ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 239ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 220ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 188ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 190ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 176ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 225ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 224ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 194ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 172ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 29s 980ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 291ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 552ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 759ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 977ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 214ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 1s 24ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 993ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 1s 23ms
/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 993ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 1s 39ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 975ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 1s 5ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 1s 15ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 1s 4ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 1s 17ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 989ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 970ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 941ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 935ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 2s 68ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 361ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 704ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 3s 109ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 459ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 2s 233ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 2s 186ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 2s 250ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 2s 175ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 2s 179ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 2s 122ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 2s 234ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 2s 111ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 2s 205ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 2s 204ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 2s 182ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 2s 251ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 2s 186ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 2s 147ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 973ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 503ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 689ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 905ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 91ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 416ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 901ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 731ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 455ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 293ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 204ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 220ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 257ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 249ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 250ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 263ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 254ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 233ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 249ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 245ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 180ms
/iceberg/iceberg cache OK 35s 79ms
/iceberg/iceberg cache/rest catalog OK 17s 359ms
/iceberg/iceberg cache/rest catalog/iceberg database engine OK 2s 832ms
/iceberg/iceberg cache/rest catalog/iceberg database engine/cache XFail 2s 831ms
/iceberg/iceberg cache/rest catalog/iceberg table engine OK 2s 678ms
/iceberg/iceberg cache/rest catalog/iceberg table engine/cache OK 2s 677ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function OK 11s 720ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cache XFail 11s 718ms
/iceberg/iceberg cache/glue catalog OK 17s 718ms
/iceberg/iceberg cache/glue catalog/iceberg database engine OK 2s 836ms
/iceberg/iceberg cache/glue catalog/iceberg database engine/cache XFail 2s 835ms
/iceberg/iceberg cache/glue catalog/iceberg table engine OK 2s 913ms
/iceberg/iceberg cache/glue catalog/iceberg table engine/cache OK 2s 912ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function OK 11s 965ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cache XFail 11s 963ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922