Iceberg Test Run Report

DateJun 02, 2026 14:50
Duration1h 20m
Framework TestFlows 2.0.250110.1002922

Artifacts

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

Attributes

projectAltinity/ClickHouse
project.id159717931
user.namestrtgbb
version26.3.10.20001.altinityantalya
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-26.3/0ef53ddec34514b1d64cb3b44a678f1350c72876/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash3dc71e7459ce4dc1762152aeae0986d9a3ccb54c
job.nameiceberg_2
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/26818784939
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-26.3/0ef53ddec34514b1d64cb3b44a678f1350c72876/build_arm_binary/clickhouse
as_binaryFalse
base_osNone
keeper_pathNone
zookeeper_versionNone
use_keeperFalse
stressFalse
collect_service_logsTrue
thread_fuzzerFalse
with_analyzerTrue
reuse_envFalse
cicdTrue
minio_uriSecret(name='minio_uri')
minio_root_userSecret(name='minio_root_user')
minio_root_passwordSecret(name='minio_root_password')

Summary

98.6%OK
<1%Known

Statistics

Units Skip OK Fail XFail Retried
Modules
1
1
Features
95
12
83
Scenarios
1785
1769
16
Checks
100
100
Steps
85233
85112
33
87
1

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/glue catalog/predicate push down/issue with decimal columnXFail 1s 243ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 467, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 92, 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/glue catalog/predicate push down/issue with float columnXFail 1s 362ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 467, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 92, 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/glue catalog/iceberg partition pruning/check iceberg partition pruning with integer typeXFail 2s 413ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 467, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 125, 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/glue catalog/iceberg partition pruning/check partition pruning with complex where clauseXFail 2s 238ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 467, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 125, 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 '27'
  assert int(s3_read_requests_count) <= 22, error()
         ^ is = 27
  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/glue catalog/iceberg partition pruning/partition pruning with date typeXFail 2s 315ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 467, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 125, 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/export partition/no catalog/manifest integrity/value_counts across data files sum to source row countXFail 653ms
ClickHouse EXPORT PARTITION never populates `value_counts` in manifest entries (IcebergWrites.cpp / IcebergDataFileEntry.h only track column_sizes / null_value_counts / lower_bounds / upper_bounds). The Avro field is left null.
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 487, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 89, in feature
    _load_modules(self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password'))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 57, in _load_modules
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py", line 482, in feature
    Scenario(test=scenario, flags=TE)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py", line 304, in value_counts_sum_to_row_count
    assert_value_counts_sum_to(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/steps/manifest_validation.py", line 561, in assert_value_counts_sum_to
    assert not bad, error(
           ^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  @TestStep(Then)
  def assert_value_counts_sum_to(
      self,
      destination,
      minio_root_user,
      minio_root_[masked]:Secret(name='minio_root_password'),
      expected_total,
  ):
      """For each column, assert ``sum(data_file.value_counts[field_id]) == expected_total``.

      This cross-checks the per-file statistics against the total row count
      without needing to decode ``lower_bounds`` / ``upper_bounds`` bytes.
      """
      table = load_pyiceberg_table(
          destination=destination,
          minio_root_user=minio_root_user,
          minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
      )
      data_files = get_data_files(
          destination=destination,
          minio_root_user=minio_root_user,
          minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
      )
      schema = table.schema()

      per_column_totals = {}
      for data_file in data_files:
          for field_id, count in (data_file.value_counts or {}).items():
              per_column_totals[field_id] = per_column_totals.get(field_id, 0) + count

      bad = []
      for field in schema.fields:
          total = per_column_totals.get(field.field_id, 0)
          if total != expected_total:
              bad.append((field.name, field.field_id, total))

      assert not bad, error(

Description
  Value_counts do not sum to 7 for iceberg_0664d17d_5e9b_11f1_af77_1232adabb401: [('id', 1, 0), ('year', 2, 0)]

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/steps/manifest_validation.py', line 561 in 'assert_value_counts_sum_to'

553\|              per_column_totals[field_id] = per_column_totals.get(field_id, 0) + count
554\|  
555\|      bad = []
556\|      for field in schema.fields:
557\|          total = per_column_totals.get(field.field_id, 0)
558\|          if total != expected_total:
559\|              bad.append((field.name, field.field_id, total))
560\|  
561\|>     assert not bad, error(
562\|          f"value_counts do not sum to {expected_total} for "
563\|          f"{as_destination_name(destination)}: {bad!r}"
564\|      )
/iceberg/export partition/no catalog/manifest integrity/external iceberg reader round-trips exported dataXFail 482ms
PyIceberg cannot scan EXPORT PARTITION data files: Parquet written by ClickHouse lacks Iceberg field-ids and IcebergS3 tables have no schema.name-mapping.default, so strict readers raise ValueError during schema resolution. On builds that still write bucket-relative data_file.file_path, the scenario may instead fail with FileNotFoundError (local FileIO fallback).
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py", line 428, in external_reader_round_trips_exported_data
    arrow_table = table.scan().to_arrow()
                  ^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/table/__init__.py", line 1763, in to_arrow
    ).to_table(self.plan_files())
      ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1575, in to_table
    if table_result := future.result():
                       ^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/concurrent/futures/_base.py", line 449, in result
    return self.__get_result()
           ^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/concurrent/futures/_base.py", line 401, in __get_result
    raise self._exception
  File "/usr/lib/python3.12/concurrent/futures/thread.py", line 58, in run
    result = self.fn(*self.args, **self.kwargs)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1556, in _table_from_scan_task
    batches = list(self._record_batches_from_scan_tasks_and_deletes([task], deletes_per_file))
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1637, in _record_batches_from_scan_tasks_and_deletes
    for batch in batches:
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1374, in _task_to_record_batches
    file_schema = pyarrow_to_schema(physical_schema, name_mapping, downcast_ns_timestamp_to_us=True)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 945, in pyarrow_to_schema
    raise ValueError(
ValueError: Parquet file does not have field-ids and the Iceberg table does not have 'schema.name-mapping.default' defined

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 487, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 89, in feature
    _load_modules(self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password'))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 57, in _load_modules
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py", line 482, in feature
    Scenario(test=scenario, flags=TE)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py", line 433, in external_reader_round_trips_exported_data
    assert False, error(
           ^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  @TestScenario
  @Requirements(RQ_Iceberg_ExportPartition_ManifestIntegrity_ExternalReader("1.0"))
  @Name("external iceberg reader round-trips exported data")
  def external_reader_round_trips_exported_data(
      self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password')
  ):
      """PyIceberg (a non-ClickHouse reader) can scan the destination and
      materialise the exported rows.

      Currently XFail: EXPORT PARTITION writes Parquet without Iceberg
      field-ids and IcebergS3 tables do not set
      ``schema.name-mapping.default``, so strict readers (PyIceberg) cannot
      map physical columns to the table schema. On older builds that still
      write bucket-relative ``data_file.file_path`` URIs, the same scenario
      may instead fail at FileIO open with ``FileNotFoundError``.
      """
      source_table = f"mt_{getuid()}"
      expected_values = [(1, 2020), (2, 2020), (3, 2020)]
      values_sql = ", ".join(f"({id_}, {year})" for id_, year in expected_values)

      with Given("create source table and insert a known partition"):
          create_replicated_mergetree(
              table_name=source_table,
              columns=SIMPLE_COLUMNS,
              partition_by=SIMPLE_PARTITION_BY,
          )
          insert_data(table_name=source_table, values=values_sql)

      with And("create the Iceberg destination with full paths in metadata"):
          # write_full_path_in_iceberg_metadata = 1 is required infrastructure:
          # without it the manifest-list pointer in metadata.json is also
          # bucket-relative and PyIceberg fails before we ever reach a
          # data_file.file_path. We want the failure to be about the data
          # files, not the manifest list.
          destination = create_iceberg_destination(
              columns=SIMPLE_COLUMNS,
              partition_by=SIMPLE_PARTITION_BY,
              minio_root_user=minio_root_user,
              minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
              query_settings=FULL_PATHS_SETTING,
          )

      with When("export the partition with full paths in metadata"):
          export_partition(
              source_table=source_table,
              destination=destination,
              partition_id="2020",
              extra_settings=FULL_PATHS_SETTING,
          )

      with And("load the destination via PyIceberg (external reader)"):
          table = load_pyiceberg_table(
              destination=destination,
              minio_root_user=minio_root_user,
              minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
          )

      with Then("PyIceberg can scan the table and materialise the rows"):
          try:
              arrow_table = table.scan().to_arrow()
          except ValueError as exc:
              msg = str(exc)
              if "field-ids" not in msg and "name-mapping.default" not in msg:
                  raise
              assert False, error(

Description
  External reader (PyIceberg) could not map exported Parquet columns to the Iceberg table schema. EXPORT PARTITION writes Parquet without Iceberg field-ids, and IcebergS3 destinations do not set table property schema.name-mapping.default. Underlying error: ValueError: Parquet file does not have field-ids and the Iceberg table does not have 'schema.name-mapping.default' defined

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py', line 433 in 'external_reader_round_trips_exported_data'

425\|  
426\|      with Then("PyIceberg can scan the table and materialise the rows"):
427\|          try:
428\|              arrow_table = table.scan().to_arrow()
429\|          except ValueError as exc:
430\|              msg = str(exc)
431\|              if "field-ids" not in msg and "name-mapping.default" not in msg:
432\|                  raise
433\|>             assert False, error(
434\|                  "External reader (PyIceberg) could not map exported Parquet "
435\|                  "columns to the Iceberg table schema. EXPORT PARTITION writes "
436\|                  "Parquet without Iceberg field-ids, and IcebergS3 "
/iceberg/export partition/no catalog/settings/output_format_parquet_compression_method flows to data filesXFail 805ms
ClickHouse EXPORT PARTITION does not propagate format-level settings from the `ALTER ... EXPORT PARTITION ... SETTINGS` clause to the background export task. ExportReplicatedMergeTreePartitionManifest has no generic settings blob and ExportPartitionUtils::getContextCopyWithTaskSettings uses a hardcoded allowlist that omits format settings, so `output_format_parquet_compression_method` is dropped before ExportPartTask::executeStep calls getFormatSettings and the Parquet writer always falls back to the server-profile default codec. Intentional for now per dev; remove this entry once the manifest carries format settings end-to-end.
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 487, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 89, in feature
    _load_modules(self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password'))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 57, in _load_modules
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/settings.py", line 197, in feature
    Scenario(test=scenario, flags=TE)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/settings.py", line 183, in parquet_compression_method_flows_to_data_files
    assert normalised == {parquet_codec}, error(
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  @TestScenario
  @Requirements(RQ_Iceberg_ExportPartition_Settings_ParquetCompression("1.0"))
  @Name("output_format_parquet_compression_method flows to data files")
  def parquet_compression_method_flows_to_data_files(
      self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password')
  ):
      """``output_format_parquet_compression_method`` set on ``ALTER ...
      EXPORT PARTITION`` reaches the Parquet writer (codec inspected via
      pyarrow). Currently XFail: the export-task settings allowlist drops
      format settings before ``getFormatSettings`` runs.
      """
      source_table = _seed_source()

      compressions = (("zstd", "ZSTD"), ("snappy", "SNAPPY"))

      for ch_codec, parquet_codec in compressions:
          with Given(f"create a dedicated Iceberg destination for {ch_codec}"):
              # write_full_path_in_iceberg_metadata = 1 so PyIceberg can follow
              # the manifest-list pointer in metadata.json via S3 (see the
              # FULL_PATHS_SETTING docstring). It does not influence the
              # compression codec under test.
              destination = create_iceberg_destination(
                  columns=SIMPLE_COLUMNS,
                  partition_by=SIMPLE_PARTITION_BY,
                  minio_root_user=minio_root_user,
                  minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
                  query_settings=FULL_PATHS_SETTING,
              )

          with When(f"export partition 2020 with {ch_codec} compression"):
              export_partition(
                  source_table=source_table,
                  destination=destination,
                  partition_id="2020",
                  extra_settings=FULL_PATHS_SETTING + [
                      ("output_format_parquet_compression_method", ch_codec),
                  ],
              )

          with Then(
              f"every column chunk of every {ch_codec} data file uses "
              f"{parquet_codec}"
          ):
              data_files = get_data_files(
                  destination=destination,
                  minio_root_user=minio_root_user,
                  minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
              )
              assert data_files, error(
                  f"No data files found in destination for codec {ch_codec}"
              )

              observed = set()
              for data_file in data_files:
                  bucket, key = _parse_s3_file_path(
                      data_file.file_path, DEFAULT_S3_WAREHOUSE_BUCKET
                  )
                  observed \|= _read_parquet_compression_codecs(
                      bucket=bucket,
                      key=key,
                      minio_root_user=minio_root_user,
                      minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
                  )

              # pyarrow reports codec names in upper-case. We compare
              # case-insensitively to avoid coupling the test to that
              # convention.
              normalised = {c.upper() for c in observed}
              assert normalised == {parquet_codec}, error(

Description
  Expected every column to use 'SNAPPY', got ['ZSTD']

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/settings.py', line 183 in 'parquet_compression_method_flows_to_data_files'

175\|                      minio_root_user=minio_root_user,
176\|                      minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
177\|                  )
178\|  
179\|              # pyarrow reports codec names in upper-case. We compare
180\|              # case-insensitively to avoid coupling the test to that
181\|              # convention.
182\|              normalised = {c.upper() for c in observed}
183\|>             assert normalised == {parquet_codec}, error(
184\|                  f"Expected every column to use {parquet_codec!r}, "
185\|                  f"got {sorted(observed)!r}"
186\|              )
/iceberg/export partition/ice catalog/manifest integrity/value_counts across data files sum to source row countXFail 3s 704ms
ClickHouse EXPORT PARTITION never populates `value_counts` in manifest entries (IcebergWrites.cpp / IcebergDataFileEntry.h only track column_sizes / null_value_counts / lower_bounds / upper_bounds). The Avro field is left null.
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 487, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 89, in feature
    _load_modules(self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password'))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 57, in _load_modules
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py", line 482, in feature
    Scenario(test=scenario, flags=TE)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py", line 304, in value_counts_sum_to_row_count
    assert_value_counts_sum_to(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/steps/manifest_validation.py", line 561, in assert_value_counts_sum_to
    assert not bad, error(
           ^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  @TestStep(Then)
  def assert_value_counts_sum_to(
      self,
      destination,
      minio_root_user,
      minio_root_[masked]:Secret(name='minio_root_password'),
      expected_total,
  ):
      """For each column, assert ``sum(data_file.value_counts[field_id]) == expected_total``.

      This cross-checks the per-file statistics against the total row count
      without needing to decode ``lower_bounds`` / ``upper_bounds`` bytes.
      """
      table = load_pyiceberg_table(
          destination=destination,
          minio_root_user=minio_root_user,
          minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
      )
      data_files = get_data_files(
          destination=destination,
          minio_root_user=minio_root_user,
          minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
      )
      schema = table.schema()

      per_column_totals = {}
      for data_file in data_files:
          for field_id, count in (data_file.value_counts or {}).items():
              per_column_totals[field_id] = per_column_totals.get(field_id, 0) + count

      bad = []
      for field in schema.fields:
          total = per_column_totals.get(field.field_id, 0)
          if total != expected_total:
              bad.append((field.name, field.field_id, total))

      assert not bad, error(

Description
  Value_counts do not sum to 7 for datalake_7879cf5f_5e9b_11f1_a667_1232adabb401.\`export_ns_7879ceef_5e9b_11f1_b6ce_1232adabb401.iceberg_7879cf37_5e9b_11f1_8d39_1232adabb401\`: [('id', 1, 0), ('year', 2, 0)]

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/steps/manifest_validation.py', line 561 in 'assert_value_counts_sum_to'

553\|              per_column_totals[field_id] = per_column_totals.get(field_id, 0) + count
554\|  
555\|      bad = []
556\|      for field in schema.fields:
557\|          total = per_column_totals.get(field.field_id, 0)
558\|          if total != expected_total:
559\|              bad.append((field.name, field.field_id, total))
560\|  
561\|>     assert not bad, error(
562\|          f"value_counts do not sum to {expected_total} for "
563\|          f"{as_destination_name(destination)}: {bad!r}"
564\|      )
/iceberg/export partition/ice catalog/manifest integrity/external iceberg reader round-trips exported dataXFail 3s 644ms
PyIceberg cannot scan EXPORT PARTITION data files: Parquet written by ClickHouse lacks Iceberg field-ids and IcebergS3 tables have no schema.name-mapping.default, so strict readers raise ValueError during schema resolution. On builds that still write bucket-relative data_file.file_path, the scenario may instead fail with FileNotFoundError (local FileIO fallback).
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py", line 428, in external_reader_round_trips_exported_data
    arrow_table = table.scan().to_arrow()
                  ^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/table/__init__.py", line 1763, in to_arrow
    ).to_table(self.plan_files())
      ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1575, in to_table
    if table_result := future.result():
                       ^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/concurrent/futures/_base.py", line 449, in result
    return self.__get_result()
           ^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/concurrent/futures/_base.py", line 401, in __get_result
    raise self._exception
  File "/usr/lib/python3.12/concurrent/futures/thread.py", line 58, in run
    result = self.fn(*self.args, **self.kwargs)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1556, in _table_from_scan_task
    batches = list(self._record_batches_from_scan_tasks_and_deletes([task], deletes_per_file))
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1637, in _record_batches_from_scan_tasks_and_deletes
    for batch in batches:
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1374, in _task_to_record_batches
    file_schema = pyarrow_to_schema(physical_schema, name_mapping, downcast_ns_timestamp_to_us=True)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 945, in pyarrow_to_schema
    raise ValueError(
ValueError: Parquet file does not have field-ids and the Iceberg table does not have 'schema.name-mapping.default' defined

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 487, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 89, in feature
    _load_modules(self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password'))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 57, in _load_modules
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py", line 482, in feature
    Scenario(test=scenario, flags=TE)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py", line 433, in external_reader_round_trips_exported_data
    assert False, error(
           ^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  @TestScenario
  @Requirements(RQ_Iceberg_ExportPartition_ManifestIntegrity_ExternalReader("1.0"))
  @Name("external iceberg reader round-trips exported data")
  def external_reader_round_trips_exported_data(
      self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password')
  ):
      """PyIceberg (a non-ClickHouse reader) can scan the destination and
      materialise the exported rows.

      Currently XFail: EXPORT PARTITION writes Parquet without Iceberg
      field-ids and IcebergS3 tables do not set
      ``schema.name-mapping.default``, so strict readers (PyIceberg) cannot
      map physical columns to the table schema. On older builds that still
      write bucket-relative ``data_file.file_path`` URIs, the same scenario
      may instead fail at FileIO open with ``FileNotFoundError``.
      """
      source_table = f"mt_{getuid()}"
      expected_values = [(1, 2020), (2, 2020), (3, 2020)]
      values_sql = ", ".join(f"({id_}, {year})" for id_, year in expected_values)

      with Given("create source table and insert a known partition"):
          create_replicated_mergetree(
              table_name=source_table,
              columns=SIMPLE_COLUMNS,
              partition_by=SIMPLE_PARTITION_BY,
          )
          insert_data(table_name=source_table, values=values_sql)

      with And("create the Iceberg destination with full paths in metadata"):
          # write_full_path_in_iceberg_metadata = 1 is required infrastructure:
          # without it the manifest-list pointer in metadata.json is also
          # bucket-relative and PyIceberg fails before we ever reach a
          # data_file.file_path. We want the failure to be about the data
          # files, not the manifest list.
          destination = create_iceberg_destination(
              columns=SIMPLE_COLUMNS,
              partition_by=SIMPLE_PARTITION_BY,
              minio_root_user=minio_root_user,
              minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
              query_settings=FULL_PATHS_SETTING,
          )

      with When("export the partition with full paths in metadata"):
          export_partition(
              source_table=source_table,
              destination=destination,
              partition_id="2020",
              extra_settings=FULL_PATHS_SETTING,
          )

      with And("load the destination via PyIceberg (external reader)"):
          table = load_pyiceberg_table(
              destination=destination,
              minio_root_user=minio_root_user,
              minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
          )

      with Then("PyIceberg can scan the table and materialise the rows"):
          try:
              arrow_table = table.scan().to_arrow()
          except ValueError as exc:
              msg = str(exc)
              if "field-ids" not in msg and "name-mapping.default" not in msg:
                  raise
              assert False, error(

Description
  External reader (PyIceberg) could not map exported Parquet columns to the Iceberg table schema. EXPORT PARTITION writes Parquet without Iceberg field-ids, and IcebergS3 destinations do not set table property schema.name-mapping.default. Underlying error: ValueError: Parquet file does not have field-ids and the Iceberg table does not have 'schema.name-mapping.default' defined

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py', line 433 in 'external_reader_round_trips_exported_data'

425\|  
426\|      with Then("PyIceberg can scan the table and materialise the rows"):
427\|          try:
428\|              arrow_table = table.scan().to_arrow()
429\|          except ValueError as exc:
430\|              msg = str(exc)
431\|              if "field-ids" not in msg and "name-mapping.default" not in msg:
432\|                  raise
433\|>             assert False, error(
434\|                  "External reader (PyIceberg) could not map exported Parquet "
435\|                  "columns to the Iceberg table schema. EXPORT PARTITION writes "
436\|                  "Parquet without Iceberg field-ids, and IcebergS3 "
/iceberg/export partition/ice catalog/catalogs/catalog﹕ external reader round-trips exported dataXFail 3s 616ms
Same Parquet field-id / name-mapping gap as the no_catalog external-reader scenario: catalog-backed tables get a proper Iceberg schema from PyIceberg at CREATE time, but EXPORT PARTITION still writes Parquet without embedded field-ids. Older builds may instead hit FileNotFoundError when data_file.file_path lacks a URI scheme.
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/catalogs.py", line 333, in catalog_external_reader_round_trips_exported_data
    arrow_table = external_view.scan().to_arrow()
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/table/__init__.py", line 1763, in to_arrow
    ).to_table(self.plan_files())
      ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1575, in to_table
    if table_result := future.result():
                       ^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/concurrent/futures/_base.py", line 449, in result
    return self.__get_result()
           ^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/concurrent/futures/_base.py", line 401, in __get_result
    raise self._exception
  File "/usr/lib/python3.12/concurrent/futures/thread.py", line 58, in run
    result = self.fn(*self.args, **self.kwargs)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1556, in _table_from_scan_task
    batches = list(self._record_batches_from_scan_tasks_and_deletes([task], deletes_per_file))
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1637, in _record_batches_from_scan_tasks_and_deletes
    for batch in batches:
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1374, in _task_to_record_batches
    file_schema = pyarrow_to_schema(physical_schema, name_mapping, downcast_ns_timestamp_to_us=True)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 945, in pyarrow_to_schema
    raise ValueError(
ValueError: Parquet file does not have field-ids and the Iceberg table does not have 'schema.name-mapping.default' defined

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 487, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 89, in feature
    _load_modules(self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password'))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 57, in _load_modules
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/catalogs.py", line 392, in feature
    Scenario(test=scenario, flags=TE)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/catalogs.py", line 338, in catalog_external_reader_round_trips_exported_data
    assert False, error(
           ^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  @TestScenario
  @Requirements(RQ_Iceberg_ExportPartition_CatalogIntegration_RestGlue("1.0"))
  @Name("catalog: external reader round-trips exported data")
  def catalog_external_reader_round_trips_exported_data(
      self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password')
  ):
      """PyIceberg, following the catalog's metadata pointer, reads back
      the exported rows byte-exact. Catalog-mode analogue of the
      ``manifest_integrity`` external-reader scenario; skipped under
      ``no_catalog``.
      """
      source_table = _seed_source()

      with Given("materialise a catalog-backed Iceberg destination via PyIceberg"):
          destination = create_pyiceberg_catalog_destination(
              schema=CATALOG_SCHEMA,
              partition_spec=CATALOG_PARTITION_SPEC,
              minio_root_user=minio_root_user,
              minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
          )

      with When("export the single partition"):
          # ``destination=`` dispatches the catalog-aware split of
          # (destination_database, destination_table) when waiting for the
          # status to flip to ``COMPLETED``; see Phase 2 notes in
          # ``steps/export_status.py``.
          export_partition(
              source_table=source_table,
              destination=destination,
              partition_id="2020",
              extra_settings=FULL_PATHS_SETTING,
          )

      with Then("PyIceberg (external reader) can materialise the exported rows"):
          handle = as_pyiceberg_handle(destination)
          assert handle is not None, error(
              "Expected catalog-backed destination to expose a PyIceberg handle"
          )
          external_view = handle["pyiceberg_catalog"].load_table(
              f"{handle['namespace']}.{handle['table_name']}"
          )
          try:
              arrow_table = external_view.scan().to_arrow()
          except ValueError as exc:
              msg = str(exc)
              if "field-ids" not in msg and "name-mapping.default" not in msg:
                  raise
              assert False, error(

Description
  External reader (PyIceberg) could not map exported Parquet columns to the Iceberg table schema. EXPORT PARTITION writes Parquet without Iceberg field-ids even when the catalog table was created with a proper schema. Underlying error: ValueError: Parquet file does not have field-ids and the Iceberg table does not have 'schema.name-mapping.default' defined

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/catalogs.py', line 338 in 'catalog_external_reader_round_trips_exported_data'

330\|              f"{handle['namespace']}.{handle['table_name']}"
331\|          )
332\|          try:
333\|              arrow_table = external_view.scan().to_arrow()
334\|          except ValueError as exc:
335\|              msg = str(exc)
336\|              if "field-ids" not in msg and "name-mapping.default" not in msg:
337\|                  raise
338\|>             assert False, error(
339\|                  "External reader (PyIceberg) could not map exported Parquet "
340\|                  "columns to the Iceberg table schema. EXPORT PARTITION writes "
341\|                  "Parquet without Iceberg field-ids even when the catalog "
/iceberg/export partition/ice catalog/settings/output_format_parquet_compression_method flows to data filesXFail 7s 62ms
ClickHouse EXPORT PARTITION does not propagate format-level settings from the `ALTER ... EXPORT PARTITION ... SETTINGS` clause to the background export task. ExportReplicatedMergeTreePartitionManifest has no generic settings blob and ExportPartitionUtils::getContextCopyWithTaskSettings uses a hardcoded allowlist that omits format settings, so `output_format_parquet_compression_method` is dropped before ExportPartTask::executeStep calls getFormatSettings and the Parquet writer always falls back to the server-profile default codec. Intentional for now per dev; remove this entry once the manifest carries format settings end-to-end.
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 487, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 89, in feature
    _load_modules(self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password'))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 57, in _load_modules
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/settings.py", line 197, in feature
    Scenario(test=scenario, flags=TE)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/settings.py", line 183, in parquet_compression_method_flows_to_data_files
    assert normalised == {parquet_codec}, error(
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  @TestScenario
  @Requirements(RQ_Iceberg_ExportPartition_Settings_ParquetCompression("1.0"))
  @Name("output_format_parquet_compression_method flows to data files")
  def parquet_compression_method_flows_to_data_files(
      self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password')
  ):
      """``output_format_parquet_compression_method`` set on ``ALTER ...
      EXPORT PARTITION`` reaches the Parquet writer (codec inspected via
      pyarrow). Currently XFail: the export-task settings allowlist drops
      format settings before ``getFormatSettings`` runs.
      """
      source_table = _seed_source()

      compressions = (("zstd", "ZSTD"), ("snappy", "SNAPPY"))

      for ch_codec, parquet_codec in compressions:
          with Given(f"create a dedicated Iceberg destination for {ch_codec}"):
              # write_full_path_in_iceberg_metadata = 1 so PyIceberg can follow
              # the manifest-list pointer in metadata.json via S3 (see the
              # FULL_PATHS_SETTING docstring). It does not influence the
              # compression codec under test.
              destination = create_iceberg_destination(
                  columns=SIMPLE_COLUMNS,
                  partition_by=SIMPLE_PARTITION_BY,
                  minio_root_user=minio_root_user,
                  minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
                  query_settings=FULL_PATHS_SETTING,
              )

          with When(f"export partition 2020 with {ch_codec} compression"):
              export_partition(
                  source_table=source_table,
                  destination=destination,
                  partition_id="2020",
                  extra_settings=FULL_PATHS_SETTING + [
                      ("output_format_parquet_compression_method", ch_codec),
                  ],
              )

          with Then(
              f"every column chunk of every {ch_codec} data file uses "
              f"{parquet_codec}"
          ):
              data_files = get_data_files(
                  destination=destination,
                  minio_root_user=minio_root_user,
                  minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
              )
              assert data_files, error(
                  f"No data files found in destination for codec {ch_codec}"
              )

              observed = set()
              for data_file in data_files:
                  bucket, key = _parse_s3_file_path(
                      data_file.file_path, DEFAULT_S3_WAREHOUSE_BUCKET
                  )
                  observed \|= _read_parquet_compression_codecs(
                      bucket=bucket,
                      key=key,
                      minio_root_user=minio_root_user,
                      minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
                  )

              # pyarrow reports codec names in upper-case. We compare
              # case-insensitively to avoid coupling the test to that
              # convention.
              normalised = {c.upper() for c in observed}
              assert normalised == {parquet_codec}, error(

Description
  Expected every column to use 'SNAPPY', got ['ZSTD']

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/settings.py', line 183 in 'parquet_compression_method_flows_to_data_files'

175\|                      minio_root_user=minio_root_user,
176\|                      minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
177\|                  )
178\|  
179\|              # pyarrow reports codec names in upper-case. We compare
180\|              # case-insensitively to avoid coupling the test to that
181\|              # convention.
182\|              normalised = {c.upper() for c in observed}
183\|>             assert normalised == {parquet_codec}, error(
184\|                  f"Expected every column to use {parquet_codec!r}, "
185\|                  f"got {sorted(observed)!r}"
186\|              )
/iceberg/export partition/glue catalog/manifest integrity/value_counts across data files sum to source row countXFail 674ms
ClickHouse EXPORT PARTITION never populates `value_counts` in manifest entries (IcebergWrites.cpp / IcebergDataFileEntry.h only track column_sizes / null_value_counts / lower_bounds / upper_bounds). The Avro field is left null.
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 487, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 89, in feature
    _load_modules(self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password'))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 57, in _load_modules
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py", line 482, in feature
    Scenario(test=scenario, flags=TE)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py", line 304, in value_counts_sum_to_row_count
    assert_value_counts_sum_to(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/steps/manifest_validation.py", line 561, in assert_value_counts_sum_to
    assert not bad, error(
           ^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  @TestStep(Then)
  def assert_value_counts_sum_to(
      self,
      destination,
      minio_root_user,
      minio_root_[masked]:Secret(name='minio_root_password'),
      expected_total,
  ):
      """For each column, assert ``sum(data_file.value_counts[field_id]) == expected_total``.

      This cross-checks the per-file statistics against the total row count
      without needing to decode ``lower_bounds`` / ``upper_bounds`` bytes.
      """
      table = load_pyiceberg_table(
          destination=destination,
          minio_root_user=minio_root_user,
          minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
      )
      data_files = get_data_files(
          destination=destination,
          minio_root_user=minio_root_user,
          minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
      )
      schema = table.schema()

      per_column_totals = {}
      for data_file in data_files:
          for field_id, count in (data_file.value_counts or {}).items():
              per_column_totals[field_id] = per_column_totals.get(field_id, 0) + count

      bad = []
      for field in schema.fields:
          total = per_column_totals.get(field.field_id, 0)
          if total != expected_total:
              bad.append((field.name, field.field_id, total))

      assert not bad, error(

Description
  Value_counts do not sum to 7 for datalake_a8ca5c63_5e9c_11f1_b016_1232adabb401.\`export_ns_a8ca5bfe_5e9c_11f1_b0f4_1232adabb401.iceberg_a8ca5c40_5e9c_11f1_817f_1232adabb401\`: [('id', 1, 0), ('year', 2, 0)]

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/steps/manifest_validation.py', line 561 in 'assert_value_counts_sum_to'

553\|              per_column_totals[field_id] = per_column_totals.get(field_id, 0) + count
554\|  
555\|      bad = []
556\|      for field in schema.fields:
557\|          total = per_column_totals.get(field.field_id, 0)
558\|          if total != expected_total:
559\|              bad.append((field.name, field.field_id, total))
560\|  
561\|>     assert not bad, error(
562\|          f"value_counts do not sum to {expected_total} for "
563\|          f"{as_destination_name(destination)}: {bad!r}"
564\|      )
/iceberg/export partition/glue catalog/manifest integrity/external iceberg reader round-trips exported dataXFail 872ms
PyIceberg cannot scan EXPORT PARTITION data files: Parquet written by ClickHouse lacks Iceberg field-ids and IcebergS3 tables have no schema.name-mapping.default, so strict readers raise ValueError during schema resolution. On builds that still write bucket-relative data_file.file_path, the scenario may instead fail with FileNotFoundError (local FileIO fallback).
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py", line 428, in external_reader_round_trips_exported_data
    arrow_table = table.scan().to_arrow()
                  ^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/table/__init__.py", line 1763, in to_arrow
    ).to_table(self.plan_files())
      ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1575, in to_table
    if table_result := future.result():
                       ^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/concurrent/futures/_base.py", line 449, in result
    return self.__get_result()
           ^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/concurrent/futures/_base.py", line 401, in __get_result
    raise self._exception
  File "/usr/lib/python3.12/concurrent/futures/thread.py", line 58, in run
    result = self.fn(*self.args, **self.kwargs)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1556, in _table_from_scan_task
    batches = list(self._record_batches_from_scan_tasks_and_deletes([task], deletes_per_file))
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1637, in _record_batches_from_scan_tasks_and_deletes
    for batch in batches:
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1374, in _task_to_record_batches
    file_schema = pyarrow_to_schema(physical_schema, name_mapping, downcast_ns_timestamp_to_us=True)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 945, in pyarrow_to_schema
    raise ValueError(
ValueError: Parquet file does not have field-ids and the Iceberg table does not have 'schema.name-mapping.default' defined

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 487, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 89, in feature
    _load_modules(self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password'))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 57, in _load_modules
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py", line 482, in feature
    Scenario(test=scenario, flags=TE)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py", line 433, in external_reader_round_trips_exported_data
    assert False, error(
           ^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  @TestScenario
  @Requirements(RQ_Iceberg_ExportPartition_ManifestIntegrity_ExternalReader("1.0"))
  @Name("external iceberg reader round-trips exported data")
  def external_reader_round_trips_exported_data(
      self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password')
  ):
      """PyIceberg (a non-ClickHouse reader) can scan the destination and
      materialise the exported rows.

      Currently XFail: EXPORT PARTITION writes Parquet without Iceberg
      field-ids and IcebergS3 tables do not set
      ``schema.name-mapping.default``, so strict readers (PyIceberg) cannot
      map physical columns to the table schema. On older builds that still
      write bucket-relative ``data_file.file_path`` URIs, the same scenario
      may instead fail at FileIO open with ``FileNotFoundError``.
      """
      source_table = f"mt_{getuid()}"
      expected_values = [(1, 2020), (2, 2020), (3, 2020)]
      values_sql = ", ".join(f"({id_}, {year})" for id_, year in expected_values)

      with Given("create source table and insert a known partition"):
          create_replicated_mergetree(
              table_name=source_table,
              columns=SIMPLE_COLUMNS,
              partition_by=SIMPLE_PARTITION_BY,
          )
          insert_data(table_name=source_table, values=values_sql)

      with And("create the Iceberg destination with full paths in metadata"):
          # write_full_path_in_iceberg_metadata = 1 is required infrastructure:
          # without it the manifest-list pointer in metadata.json is also
          # bucket-relative and PyIceberg fails before we ever reach a
          # data_file.file_path. We want the failure to be about the data
          # files, not the manifest list.
          destination = create_iceberg_destination(
              columns=SIMPLE_COLUMNS,
              partition_by=SIMPLE_PARTITION_BY,
              minio_root_user=minio_root_user,
              minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
              query_settings=FULL_PATHS_SETTING,
          )

      with When("export the partition with full paths in metadata"):
          export_partition(
              source_table=source_table,
              destination=destination,
              partition_id="2020",
              extra_settings=FULL_PATHS_SETTING,
          )

      with And("load the destination via PyIceberg (external reader)"):
          table = load_pyiceberg_table(
              destination=destination,
              minio_root_user=minio_root_user,
              minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
          )

      with Then("PyIceberg can scan the table and materialise the rows"):
          try:
              arrow_table = table.scan().to_arrow()
          except ValueError as exc:
              msg = str(exc)
              if "field-ids" not in msg and "name-mapping.default" not in msg:
                  raise
              assert False, error(

Description
  External reader (PyIceberg) could not map exported Parquet columns to the Iceberg table schema. EXPORT PARTITION writes Parquet without Iceberg field-ids, and IcebergS3 destinations do not set table property schema.name-mapping.default. Underlying error: ValueError: Parquet file does not have field-ids and the Iceberg table does not have 'schema.name-mapping.default' defined

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/manifest_integrity.py', line 433 in 'external_reader_round_trips_exported_data'

425\|  
426\|      with Then("PyIceberg can scan the table and materialise the rows"):
427\|          try:
428\|              arrow_table = table.scan().to_arrow()
429\|          except ValueError as exc:
430\|              msg = str(exc)
431\|              if "field-ids" not in msg and "name-mapping.default" not in msg:
432\|                  raise
433\|>             assert False, error(
434\|                  "External reader (PyIceberg) could not map exported Parquet "
435\|                  "columns to the Iceberg table schema. EXPORT PARTITION writes "
436\|                  "Parquet without Iceberg field-ids, and IcebergS3 "
/iceberg/export partition/glue catalog/catalogs/catalog﹕ external reader round-trips exported dataXFail 692ms
Same Parquet field-id / name-mapping gap as the no_catalog external-reader scenario: catalog-backed tables get a proper Iceberg schema from PyIceberg at CREATE time, but EXPORT PARTITION still writes Parquet without embedded field-ids. Older builds may instead hit FileNotFoundError when data_file.file_path lacks a URI scheme.
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/catalogs.py", line 333, in catalog_external_reader_round_trips_exported_data
    arrow_table = external_view.scan().to_arrow()
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/table/__init__.py", line 1763, in to_arrow
    ).to_table(self.plan_files())
      ^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1575, in to_table
    if table_result := future.result():
                       ^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/concurrent/futures/_base.py", line 449, in result
    return self.__get_result()
           ^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.12/concurrent/futures/_base.py", line 401, in __get_result
    raise self._exception
  File "/usr/lib/python3.12/concurrent/futures/thread.py", line 58, in run
    result = self.fn(*self.args, **self.kwargs)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1556, in _table_from_scan_task
    batches = list(self._record_batches_from_scan_tasks_and_deletes([task], deletes_per_file))
              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1637, in _record_batches_from_scan_tasks_and_deletes
    for batch in batches:
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 1374, in _task_to_record_batches
    file_schema = pyarrow_to_schema(physical_schema, name_mapping, downcast_ns_timestamp_to_us=True)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/venv/lib/python3.12/site-packages/pyiceberg/io/pyarrow.py", line 945, in pyarrow_to_schema
    raise ValueError(
ValueError: Parquet file does not have field-ids and the Iceberg table does not have 'schema.name-mapping.default' defined

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 487, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 89, in feature
    _load_modules(self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password'))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 57, in _load_modules
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/catalogs.py", line 392, in feature
    Scenario(test=scenario, flags=TE)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/catalogs.py", line 338, in catalog_external_reader_round_trips_exported_data
    assert False, error(
           ^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  @TestScenario
  @Requirements(RQ_Iceberg_ExportPartition_CatalogIntegration_RestGlue("1.0"))
  @Name("catalog: external reader round-trips exported data")
  def catalog_external_reader_round_trips_exported_data(
      self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password')
  ):
      """PyIceberg, following the catalog's metadata pointer, reads back
      the exported rows byte-exact. Catalog-mode analogue of the
      ``manifest_integrity`` external-reader scenario; skipped under
      ``no_catalog``.
      """
      source_table = _seed_source()

      with Given("materialise a catalog-backed Iceberg destination via PyIceberg"):
          destination = create_pyiceberg_catalog_destination(
              schema=CATALOG_SCHEMA,
              partition_spec=CATALOG_PARTITION_SPEC,
              minio_root_user=minio_root_user,
              minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
          )

      with When("export the single partition"):
          # ``destination=`` dispatches the catalog-aware split of
          # (destination_database, destination_table) when waiting for the
          # status to flip to ``COMPLETED``; see Phase 2 notes in
          # ``steps/export_status.py``.
          export_partition(
              source_table=source_table,
              destination=destination,
              partition_id="2020",
              extra_settings=FULL_PATHS_SETTING,
          )

      with Then("PyIceberg (external reader) can materialise the exported rows"):
          handle = as_pyiceberg_handle(destination)
          assert handle is not None, error(
              "Expected catalog-backed destination to expose a PyIceberg handle"
          )
          external_view = handle["pyiceberg_catalog"].load_table(
              f"{handle['namespace']}.{handle['table_name']}"
          )
          try:
              arrow_table = external_view.scan().to_arrow()
          except ValueError as exc:
              msg = str(exc)
              if "field-ids" not in msg and "name-mapping.default" not in msg:
                  raise
              assert False, error(

Description
  External reader (PyIceberg) could not map exported Parquet columns to the Iceberg table schema. EXPORT PARTITION writes Parquet without Iceberg field-ids even when the catalog table was created with a proper schema. Underlying error: ValueError: Parquet file does not have field-ids and the Iceberg table does not have 'schema.name-mapping.default' defined

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/catalogs.py', line 338 in 'catalog_external_reader_round_trips_exported_data'

330\|              f"{handle['namespace']}.{handle['table_name']}"
331\|          )
332\|          try:
333\|              arrow_table = external_view.scan().to_arrow()
334\|          except ValueError as exc:
335\|              msg = str(exc)
336\|              if "field-ids" not in msg and "name-mapping.default" not in msg:
337\|                  raise
338\|>             assert False, error(
339\|                  "External reader (PyIceberg) could not map exported Parquet "
340\|                  "columns to the Iceberg table schema. EXPORT PARTITION writes "
341\|                  "Parquet without Iceberg field-ids even when the catalog "
/iceberg/export partition/glue catalog/settings/output_format_parquet_compression_method flows to data filesXFail 1s 319ms
ClickHouse EXPORT PARTITION does not propagate format-level settings from the `ALTER ... EXPORT PARTITION ... SETTINGS` clause to the background export task. ExportReplicatedMergeTreePartitionManifest has no generic settings blob and ExportPartitionUtils::getContextCopyWithTaskSettings uses a hardcoded allowlist that omits format settings, so `output_format_parquet_compression_method` is dropped before ExportPartTask::executeStep calls getFormatSettings and the Parquet writer always falls back to the server-profile default codec. Intentional for now per dev; remove this entry once the manifest carries format settings end-to-end.
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 497, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 487, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 89, in feature
    _load_modules(self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password'))
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/feature.py", line 57, in _load_modules
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/settings.py", line 197, in feature
    Scenario(test=scenario, flags=TE)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/settings.py", line 183, in parquet_compression_method_flows_to_data_files
    assert normalised == {parquet_codec}, error(
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  @TestScenario
  @Requirements(RQ_Iceberg_ExportPartition_Settings_ParquetCompression("1.0"))
  @Name("output_format_parquet_compression_method flows to data files")
  def parquet_compression_method_flows_to_data_files(
      self, minio_root_user, minio_root_[masked]:Secret(name='minio_root_password')
  ):
      """``output_format_parquet_compression_method`` set on ``ALTER ...
      EXPORT PARTITION`` reaches the Parquet writer (codec inspected via
      pyarrow). Currently XFail: the export-task settings allowlist drops
      format settings before ``getFormatSettings`` runs.
      """
      source_table = _seed_source()

      compressions = (("zstd", "ZSTD"), ("snappy", "SNAPPY"))

      for ch_codec, parquet_codec in compressions:
          with Given(f"create a dedicated Iceberg destination for {ch_codec}"):
              # write_full_path_in_iceberg_metadata = 1 so PyIceberg can follow
              # the manifest-list pointer in metadata.json via S3 (see the
              # FULL_PATHS_SETTING docstring). It does not influence the
              # compression codec under test.
              destination = create_iceberg_destination(
                  columns=SIMPLE_COLUMNS,
                  partition_by=SIMPLE_PARTITION_BY,
                  minio_root_user=minio_root_user,
                  minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
                  query_settings=FULL_PATHS_SETTING,
              )

          with When(f"export partition 2020 with {ch_codec} compression"):
              export_partition(
                  source_table=source_table,
                  destination=destination,
                  partition_id="2020",
                  extra_settings=FULL_PATHS_SETTING + [
                      ("output_format_parquet_compression_method", ch_codec),
                  ],
              )

          with Then(
              f"every column chunk of every {ch_codec} data file uses "
              f"{parquet_codec}"
          ):
              data_files = get_data_files(
                  destination=destination,
                  minio_root_user=minio_root_user,
                  minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
              )
              assert data_files, error(
                  f"No data files found in destination for codec {ch_codec}"
              )

              observed = set()
              for data_file in data_files:
                  bucket, key = _parse_s3_file_path(
                      data_file.file_path, DEFAULT_S3_WAREHOUSE_BUCKET
                  )
                  observed \|= _read_parquet_compression_codecs(
                      bucket=bucket,
                      key=key,
                      minio_root_user=minio_root_user,
                      minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
                  )

              # pyarrow reports codec names in upper-case. We compare
              # case-insensitively to avoid coupling the test to that
              # convention.
              normalised = {c.upper() for c in observed}
              assert normalised == {parquet_codec}, error(

Description
  Expected every column to use 'SNAPPY', got ['ZSTD']

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/export_partition/settings.py', line 183 in 'parquet_compression_method_flows_to_data_files'

175\|                      minio_root_user=minio_root_user,
176\|                      minio_root_[masked]:Secret(name='minio_root_password')=minio_root_[masked]:Secret(name='minio_root_password'),
177\|                  )
178\|  
179\|              # pyarrow reports codec names in upper-case. We compare
180\|              # case-insensitively to avoid coupling the test to that
181\|              # convention.
182\|              normalised = {c.upper() for c in observed}
183\|>             assert normalised == {parquet_codec}, error(
184\|                  f"Expected every column to use {parquet_codec!r}, "
185\|                  f"got {sorted(observed)!r}"
186\|              )

Results

Test Name Result Duration
/iceberg OK 1h 20m
/iceberg/iceberg engine OK 41m 22s
/iceberg/iceberg engine/glue catalog OK 41m 22s
/iceberg/iceberg engine/glue catalog/feature OK 26s 81ms
/iceberg/iceberg engine/glue catalog/feature/sanity OK 3s 994ms
/iceberg/iceberg engine/glue catalog/feature/sort order OK 7s 777ms
/iceberg/iceberg engine/glue catalog/feature/recreate table OK 1s 221ms
/iceberg/iceberg engine/glue catalog/feature/multiple tables OK 1s 339ms
/iceberg/iceberg engine/glue catalog/feature/recreate table and database OK 2s 320ms
/iceberg/iceberg engine/glue catalog/feature/rename database OK 915ms
/iceberg/iceberg engine/glue catalog/feature/rename table from iceberg database OK 915ms
/iceberg/iceberg engine/glue catalog/feature/use database OK 980ms
/iceberg/iceberg engine/glue catalog/feature/array join OK 1s 127ms
/iceberg/iceberg engine/glue catalog/feature/show data lake catalogs in system tables OK 1s 154ms
/iceberg/iceberg engine/glue catalog/feature/show tables queries OK 1s 113ms
/iceberg/iceberg engine/glue catalog/feature/show databases queries OK 1s 61ms
/iceberg/iceberg engine/glue catalog/feature/boolean issue OK 1s 64ms
/iceberg/iceberg engine/glue catalog/feature/select from system databases OK 1s 92ms
/iceberg/iceberg engine/glue catalog/feature OK 8s 381ms
/iceberg/iceberg engine/glue catalog/feature/alter column OK 1s 867ms
/iceberg/iceberg engine/glue catalog/feature/alter comment columns OK 1s 59ms
/iceberg/iceberg engine/glue catalog/feature/alter partitions OK 2s 168ms
/iceberg/iceberg engine/glue catalog/feature/alter settings OK 1s 60ms
/iceberg/iceberg engine/glue catalog/feature/alter delete OK 994ms
/iceberg/iceberg engine/glue catalog/feature/alter order by OK 1s 229ms
/iceberg/iceberg engine/glue catalog/column rbac OK 4m 45s
/iceberg/iceberg engine/glue catalog/column rbac/combination #0 OK 2s 734ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #1 OK 2s 774ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #2 OK 2s 663ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #3 OK 2s 824ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #4 OK 2s 785ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #5 OK 2s 708ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #6 OK 2s 824ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #7 OK 2s 772ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #8 OK 2s 751ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #9 OK 2s 997ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #10 OK 2s 820ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #11 OK 2s 794ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #12 OK 2s 732ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #13 OK 2s 780ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #14 OK 2s 731ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #15 OK 3s 369ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #16 OK 3s 42ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #17 OK 2s 894ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #18 OK 2s 709ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #19 OK 2s 712ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #20 OK 2s 815ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #21 OK 2s 719ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #22 OK 2s 792ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #23 OK 2s 708ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #24 OK 2s 869ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #25 OK 2s 675ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #26 OK 2s 793ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #27 OK 2s 737ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #28 OK 2s 816ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #29 OK 2s 921ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #30 OK 2s 797ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #31 OK 2s 876ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #32 OK 2s 743ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #33 OK 2s 883ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #34 OK 2s 779ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #35 OK 2s 749ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #36 OK 2s 710ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #37 OK 2s 760ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #38 OK 2s 716ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #39 OK 2s 743ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #40 OK 2s 856ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #41 OK 2s 746ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #42 OK 3s 120ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #43 OK 2s 877ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #44 OK 2s 751ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #45 OK 2s 969ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #46 OK 2s 729ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #47 OK 2s 919ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #48 OK 2s 697ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #49 OK 2s 784ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #50 OK 2s 726ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #51 OK 3s 79ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #52 OK 2s 746ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #53 OK 2s 894ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #54 OK 2s 669ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #55 OK 2s 701ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #56 OK 2s 718ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #57 OK 2s 901ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #58 OK 2s 917ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #59 OK 2s 798ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #60 OK 3s 24ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #61 OK 2s 799ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #62 OK 2s 752ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #63 OK 2s 774ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #64 OK 2s 761ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #65 OK 2s 789ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #66 OK 2s 758ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #67 OK 3s 95ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #68 OK 2s 949ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #69 OK 2s 782ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #70 OK 2s 753ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #71 OK 2s 892ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #72 OK 2s 861ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #73 OK 2s 779ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #74 OK 2s 737ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #75 OK 2s 844ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #76 OK 3s 49ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #77 OK 2s 677ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #78 OK 3s 346ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #79 OK 2s 802ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #80 OK 2s 754ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #81 OK 2s 791ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #82 OK 2s 807ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #83 OK 2s 955ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #84 OK 2s 818ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #85 OK 2s 929ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #86 OK 2s 755ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #87 OK 2s 925ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #88 OK 2s 734ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #89 OK 2s 805ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #90 OK 2s 948ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #91 OK 3s 375ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #92 OK 2s 925ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #93 OK 2s 700ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #94 OK 2s 792ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #95 OK 2s 745ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #96 OK 2s 769ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #97 OK 3s 371ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #98 OK 2s 745ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #99 OK 2s 995ms
/iceberg/iceberg engine/glue catalog/predicate push down OK 30s 443ms
/iceberg/iceberg engine/glue catalog/predicate push down/check input format parquet filter push down OK 27s 835ms
/iceberg/iceberg engine/glue catalog/predicate push down/issue with decimal column XFail 1s 243ms
/iceberg/iceberg engine/glue catalog/predicate push down/issue with float column XFail 1s 362ms
/iceberg/iceberg engine/glue catalog/feature OK 4s 168ms
/iceberg/iceberg engine/glue catalog/feature/select privilege OK 1s 362ms
/iceberg/iceberg engine/glue catalog/feature/drop table privilege OK 1s 475ms
/iceberg/iceberg engine/glue catalog/feature/drop database privilege OK 1s 330ms
/iceberg/iceberg engine/glue catalog/feature OK 44s 582ms
/iceberg/iceberg engine/glue catalog/feature/row policies OK 44s 582ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #0 OK 432ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #1 OK 444ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #2 OK 420ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #3 OK 375ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #4 OK 450ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #5 OK 434ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #6 OK 412ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #7 OK 407ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #8 OK 435ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #9 OK 444ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #10 OK 443ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #11 OK 418ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #12 OK 408ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #13 OK 378ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #14 OK 383ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #15 OK 384ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #16 OK 423ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #17 OK 443ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #18 OK 427ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #19 OK 431ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #20 OK 405ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #21 OK 412ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #22 OK 422ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #23 OK 457ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #24 OK 443ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #25 OK 378ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #26 OK 481ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #27 OK 442ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #28 OK 417ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #29 OK 461ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #30 OK 442ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #31 OK 405ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #32 OK 415ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #33 OK 448ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #34 OK 463ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #35 OK 519ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #36 OK 411ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #37 OK 405ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #38 OK 438ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #39 OK 379ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #40 OK 376ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #41 OK 413ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #42 OK 377ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #43 OK 445ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #44 OK 414ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #45 OK 433ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #46 OK 438ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #47 OK 415ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #48 OK 425ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #49 OK 408ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #50 OK 375ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #51 OK 443ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #52 OK 410ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #53 OK 452ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #54 OK 397ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #55 OK 407ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #56 OK 446ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #57 OK 459ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #58 OK 447ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #59 OK 390ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #60 OK 440ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #61 OK 448ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #62 OK 447ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #63 OK 370ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #64 OK 441ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #65 OK 405ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #66 OK 413ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #67 OK 420ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #68 OK 415ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #69 OK 407ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #70 OK 437ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #71 OK 371ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #72 OK 456ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #73 OK 414ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #74 OK 438ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #75 OK 405ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #76 OK 410ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #77 OK 411ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #78 OK 383ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #79 OK 446ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #80 OK 470ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #81 OK 423ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #82 OK 371ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #83 OK 421ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #84 OK 452ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #85 OK 405ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #86 OK 377ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #87 OK 452ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #88 OK 440ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #89 OK 439ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #90 OK 383ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #91 OK 379ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #92 OK 414ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #93 OK 451ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #94 OK 375ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #95 OK 390ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #96 OK 453ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #97 OK 401ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #98 OK 403ms
/iceberg/iceberg engine/glue catalog/feature/row policies/combination #99 OK 405ms
/iceberg/iceberg engine/glue catalog/sql clauses OK 2s 561ms
/iceberg/iceberg engine/glue catalog/sql clauses/where clause OK 303ms
/iceberg/iceberg engine/glue catalog/sql clauses/prewhere clause OK 70ms
/iceberg/iceberg engine/glue catalog/sql clauses/group by clause OK 72ms
/iceberg/iceberg engine/glue catalog/sql clauses/having clause OK 67ms
/iceberg/iceberg engine/glue catalog/sql clauses/limit clause OK 142ms
/iceberg/iceberg engine/glue catalog/sql clauses/distinct clause OK 71ms
/iceberg/iceberg engine/glue catalog/sql clauses/join clause OK 469ms
/iceberg/iceberg engine/glue catalog/sql clauses/order by clause OK 358ms
/iceberg/iceberg engine/glue catalog/feature OK 13m 6s
/iceberg/iceberg engine/glue catalog/feature/run equality deletes combinations OK 13m 6s
/iceberg/iceberg engine/glue catalog/feature OK 2s 858ms
/iceberg/iceberg engine/glue catalog/feature/overwrite OK 1s 459ms
/iceberg/iceberg engine/glue catalog/feature/append OK 1s 397ms
/iceberg/iceberg engine/glue catalog/schema evolution OK 10m 20s
/iceberg/iceberg engine/glue catalog/schema evolution/#0 OK 6s 241ms
/iceberg/iceberg engine/glue catalog/schema evolution/#1 OK 6s 267ms
/iceberg/iceberg engine/glue catalog/schema evolution/#2 OK 6s 525ms
/iceberg/iceberg engine/glue catalog/schema evolution/#3 OK 6s 156ms
/iceberg/iceberg engine/glue catalog/schema evolution/#4 OK 6s 39ms
/iceberg/iceberg engine/glue catalog/schema evolution/#5 OK 6s 310ms
/iceberg/iceberg engine/glue catalog/schema evolution/#6 OK 6s 172ms
/iceberg/iceberg engine/glue catalog/schema evolution/#7 OK 6s 470ms
/iceberg/iceberg engine/glue catalog/schema evolution/#8 OK 6s 452ms
/iceberg/iceberg engine/glue catalog/schema evolution/#9 OK 6s 184ms
/iceberg/iceberg engine/glue catalog/schema evolution/#10 OK 6s 269ms
/iceberg/iceberg engine/glue catalog/schema evolution/#11 OK 6s 420ms
/iceberg/iceberg engine/glue catalog/schema evolution/#12 OK 6s 377ms
/iceberg/iceberg engine/glue catalog/schema evolution/#13 OK 6s 276ms
/iceberg/iceberg engine/glue catalog/schema evolution/#14 OK 6s 358ms
/iceberg/iceberg engine/glue catalog/schema evolution/#15 OK 6s 115ms
/iceberg/iceberg engine/glue catalog/schema evolution/#16 OK 6s 252ms
/iceberg/iceberg engine/glue catalog/schema evolution/#17 OK 6s 148ms
/iceberg/iceberg engine/glue catalog/schema evolution/#18 OK 6s 403ms
/iceberg/iceberg engine/glue catalog/schema evolution/#19 OK 5s 979ms
/iceberg/iceberg engine/glue catalog/schema evolution/#20 OK 6s 370ms
/iceberg/iceberg engine/glue catalog/schema evolution/#21 OK 6s 262ms
/iceberg/iceberg engine/glue catalog/schema evolution/#22 OK 6s 286ms
/iceberg/iceberg engine/glue catalog/schema evolution/#23 OK 6s 157ms
/iceberg/iceberg engine/glue catalog/schema evolution/#24 OK 6s 250ms
/iceberg/iceberg engine/glue catalog/schema evolution/#25 OK 6s 150ms
/iceberg/iceberg engine/glue catalog/schema evolution/#26 OK 5s 790ms
/iceberg/iceberg engine/glue catalog/schema evolution/#27 OK 6s 355ms
/iceberg/iceberg engine/glue catalog/schema evolution/#28 OK 6s 108ms
/iceberg/iceberg engine/glue catalog/schema evolution/#29 OK 6s 325ms
/iceberg/iceberg engine/glue catalog/schema evolution/#30 OK 6s 180ms
/iceberg/iceberg engine/glue catalog/schema evolution/#31 OK 6s 178ms
/iceberg/iceberg engine/glue catalog/schema evolution/#32 OK 6s 357ms
/iceberg/iceberg engine/glue catalog/schema evolution/#33 OK 6s 149ms
/iceberg/iceberg engine/glue catalog/schema evolution/#34 OK 6s 113ms
/iceberg/iceberg engine/glue catalog/schema evolution/#35 OK 6s 22ms
/iceberg/iceberg engine/glue catalog/schema evolution/#36 OK 6s 293ms
/iceberg/iceberg engine/glue catalog/schema evolution/#37 OK 6s 228ms
/iceberg/iceberg engine/glue catalog/schema evolution/#38 OK 6s 149ms
/iceberg/iceberg engine/glue catalog/schema evolution/#39 OK 6s 385ms
/iceberg/iceberg engine/glue catalog/schema evolution/#40 OK 6s 194ms
/iceberg/iceberg engine/glue catalog/schema evolution/#41 OK 6s 225ms
/iceberg/iceberg engine/glue catalog/schema evolution/#42 OK 6s 156ms
/iceberg/iceberg engine/glue catalog/schema evolution/#43 OK 6s 126ms
/iceberg/iceberg engine/glue catalog/schema evolution/#44 OK 6s 195ms
/iceberg/iceberg engine/glue catalog/schema evolution/#45 OK 6s 26ms
/iceberg/iceberg engine/glue catalog/schema evolution/#46 OK 5s 998ms
/iceberg/iceberg engine/glue catalog/schema evolution/#47 OK 6s 76ms
/iceberg/iceberg engine/glue catalog/schema evolution/#48 OK 6s 262ms
/iceberg/iceberg engine/glue catalog/schema evolution/#49 OK 6s 26ms
/iceberg/iceberg engine/glue catalog/schema evolution/#50 OK 6s 397ms
/iceberg/iceberg engine/glue catalog/schema evolution/#51 OK 6s 285ms
/iceberg/iceberg engine/glue catalog/schema evolution/#52 OK 6s 258ms
/iceberg/iceberg engine/glue catalog/schema evolution/#53 OK 6s 264ms
/iceberg/iceberg engine/glue catalog/schema evolution/#54 OK 6s 107ms
/iceberg/iceberg engine/glue catalog/schema evolution/#55 OK 6s 148ms
/iceberg/iceberg engine/glue catalog/schema evolution/#56 OK 6s 356ms
/iceberg/iceberg engine/glue catalog/schema evolution/#57 OK 6s 1ms
/iceberg/iceberg engine/glue catalog/schema evolution/#58 OK 6s 107ms
/iceberg/iceberg engine/glue catalog/schema evolution/#59 OK 6s 683ms
/iceberg/iceberg engine/glue catalog/schema evolution/#60 OK 6s 286ms
/iceberg/iceberg engine/glue catalog/schema evolution/#61 OK 6s 105ms
/iceberg/iceberg engine/glue catalog/schema evolution/#62 OK 6s 195ms
/iceberg/iceberg engine/glue catalog/schema evolution/#63 OK 6s 96ms
/iceberg/iceberg engine/glue catalog/schema evolution/#64 OK 6s 173ms
/iceberg/iceberg engine/glue catalog/schema evolution/#65 OK 6s 189ms
/iceberg/iceberg engine/glue catalog/schema evolution/#66 OK 6s 85ms
/iceberg/iceberg engine/glue catalog/schema evolution/#67 OK 5s 823ms
/iceberg/iceberg engine/glue catalog/schema evolution/#68 OK 6s 258ms
/iceberg/iceberg engine/glue catalog/schema evolution/#69 OK 6s 78ms
/iceberg/iceberg engine/glue catalog/schema evolution/#70 OK 6s 349ms
/iceberg/iceberg engine/glue catalog/schema evolution/#71 OK 6s 110ms
/iceberg/iceberg engine/glue catalog/schema evolution/#72 OK 6s 604ms
/iceberg/iceberg engine/glue catalog/schema evolution/#73 OK 6s 562ms
/iceberg/iceberg engine/glue catalog/schema evolution/#74 OK 6s 237ms
/iceberg/iceberg engine/glue catalog/schema evolution/#75 OK 6s 304ms
/iceberg/iceberg engine/glue catalog/schema evolution/#76 OK 6s 310ms
/iceberg/iceberg engine/glue catalog/schema evolution/#77 OK 5s 889ms
/iceberg/iceberg engine/glue catalog/schema evolution/#78 OK 6s 294ms
/iceberg/iceberg engine/glue catalog/schema evolution/#79 OK 6s 428ms
/iceberg/iceberg engine/glue catalog/schema evolution/#80 OK 6s 309ms
/iceberg/iceberg engine/glue catalog/schema evolution/#81 OK 6s 125ms
/iceberg/iceberg engine/glue catalog/schema evolution/#82 OK 6s 477ms
/iceberg/iceberg engine/glue catalog/schema evolution/#83 OK 5s 993ms
/iceberg/iceberg engine/glue catalog/schema evolution/#84 OK 6s 446ms
/iceberg/iceberg engine/glue catalog/schema evolution/#85 OK 6s 350ms
/iceberg/iceberg engine/glue catalog/schema evolution/#86 OK 5s 966ms
/iceberg/iceberg engine/glue catalog/schema evolution/#87 OK 5s 921ms
/iceberg/iceberg engine/glue catalog/schema evolution/#88 OK 5s 963ms
/iceberg/iceberg engine/glue catalog/schema evolution/#89 OK 5s 972ms
/iceberg/iceberg engine/glue catalog/schema evolution/#90 OK 6s 205ms
/iceberg/iceberg engine/glue catalog/schema evolution/#91 OK 6s 287ms
/iceberg/iceberg engine/glue catalog/schema evolution/#92 OK 6s 53ms
/iceberg/iceberg engine/glue catalog/schema evolution/#93 OK 6s 142ms
/iceberg/iceberg engine/glue catalog/schema evolution/#94 OK 5s 826ms
/iceberg/iceberg engine/glue catalog/schema evolution/#95 OK 6s 284ms
/iceberg/iceberg engine/glue catalog/schema evolution/#96 OK 6s 229ms
/iceberg/iceberg engine/glue catalog/schema evolution/#97 OK 5s 975ms
/iceberg/iceberg engine/glue catalog/schema evolution/#98 OK 6s 273ms
/iceberg/iceberg engine/glue catalog/schema evolution/#99 OK 6s 170ms
/iceberg/iceberg engine/glue catalog/swarm OK 1s 991ms
/iceberg/iceberg engine/glue catalog/swarm/swarm examples OK 1s 990ms
/iceberg/iceberg engine/glue catalog/nested datatypes OK 1m 9s
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 1 OK 1s 320ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 51 OK 1s 542ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 101 OK 1s 921ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 151 OK 1s 922ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 201 OK 2s 159ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 251 OK 2s 409ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 301 OK 2s 629ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 351 OK 2s 841ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 401 OK 3s 65ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 451 OK 3s 213ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 501 OK 3s 554ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 551 OK 3s 688ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 601 OK 4s 67ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 651 OK 4s 311ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 701 OK 4s 472ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 751 OK 4s 999ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 801 OK 4s 938ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 851 OK 5s 208ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 901 OK 5s 437ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 951 OK 6s 135ms
/iceberg/iceberg engine/glue catalog/partition evolution OK 6m 35s
/iceberg/iceberg engine/glue catalog/partition evolution/#0 OK 3s 801ms
/iceberg/iceberg engine/glue catalog/partition evolution/#1 OK 4s 29ms
/iceberg/iceberg engine/glue catalog/partition evolution/#2 OK 3s 860ms
/iceberg/iceberg engine/glue catalog/partition evolution/#3 OK 3s 896ms
/iceberg/iceberg engine/glue catalog/partition evolution/#4 OK 3s 902ms
/iceberg/iceberg engine/glue catalog/partition evolution/#5 OK 4s 27ms
/iceberg/iceberg engine/glue catalog/partition evolution/#6 OK 3s 916ms
/iceberg/iceberg engine/glue catalog/partition evolution/#7 OK 3s 806ms
/iceberg/iceberg engine/glue catalog/partition evolution/#8 OK 3s 922ms
/iceberg/iceberg engine/glue catalog/partition evolution/#9 OK 3s 974ms
/iceberg/iceberg engine/glue catalog/partition evolution/#10 OK 3s 902ms
/iceberg/iceberg engine/glue catalog/partition evolution/#11 OK 3s 823ms
/iceberg/iceberg engine/glue catalog/partition evolution/#12 OK 3s 876ms
/iceberg/iceberg engine/glue catalog/partition evolution/#13 OK 4s 56ms
/iceberg/iceberg engine/glue catalog/partition evolution/#14 OK 3s 900ms
/iceberg/iceberg engine/glue catalog/partition evolution/#15 OK 3s 822ms
/iceberg/iceberg engine/glue catalog/partition evolution/#16 OK 3s 907ms
/iceberg/iceberg engine/glue catalog/partition evolution/#17 OK 4s 128ms
/iceberg/iceberg engine/glue catalog/partition evolution/#18 OK 3s 850ms
/iceberg/iceberg engine/glue catalog/partition evolution/#19 OK 3s 898ms
/iceberg/iceberg engine/glue catalog/partition evolution/#20 OK 3s 907ms
/iceberg/iceberg engine/glue catalog/partition evolution/#21 OK 4s 19ms
/iceberg/iceberg engine/glue catalog/partition evolution/#22 OK 3s 881ms
/iceberg/iceberg engine/glue catalog/partition evolution/#23 OK 3s 843ms
/iceberg/iceberg engine/glue catalog/partition evolution/#24 OK 3s 979ms
/iceberg/iceberg engine/glue catalog/partition evolution/#25 OK 4s 229ms
/iceberg/iceberg engine/glue catalog/partition evolution/#26 OK 3s 888ms
/iceberg/iceberg engine/glue catalog/partition evolution/#27 OK 3s 837ms
/iceberg/iceberg engine/glue catalog/partition evolution/#28 OK 3s 840ms
/iceberg/iceberg engine/glue catalog/partition evolution/#29 OK 4s 113ms
/iceberg/iceberg engine/glue catalog/partition evolution/#30 OK 3s 779ms
/iceberg/iceberg engine/glue catalog/partition evolution/#31 OK 3s 885ms
/iceberg/iceberg engine/glue catalog/partition evolution/#32 OK 3s 911ms
/iceberg/iceberg engine/glue catalog/partition evolution/#33 OK 4s 162ms
/iceberg/iceberg engine/glue catalog/partition evolution/#34 OK 3s 989ms
/iceberg/iceberg engine/glue catalog/partition evolution/#35 OK 3s 848ms
/iceberg/iceberg engine/glue catalog/partition evolution/#36 OK 3s 843ms
/iceberg/iceberg engine/glue catalog/partition evolution/#37 OK 4s 171ms
/iceberg/iceberg engine/glue catalog/partition evolution/#38 OK 3s 939ms
/iceberg/iceberg engine/glue catalog/partition evolution/#39 OK 3s 848ms
/iceberg/iceberg engine/glue catalog/partition evolution/#40 OK 4s 17ms
/iceberg/iceberg engine/glue catalog/partition evolution/#41 OK 3s 937ms
/iceberg/iceberg engine/glue catalog/partition evolution/#42 OK 4s 38ms
/iceberg/iceberg engine/glue catalog/partition evolution/#43 OK 3s 899ms
/iceberg/iceberg engine/glue catalog/partition evolution/#44 OK 3s 821ms
/iceberg/iceberg engine/glue catalog/partition evolution/#45 OK 4s 38ms
/iceberg/iceberg engine/glue catalog/partition evolution/#46 OK 3s 840ms
/iceberg/iceberg engine/glue catalog/partition evolution/#47 OK 3s 877ms
/iceberg/iceberg engine/glue catalog/partition evolution/#48 OK 3s 947ms
/iceberg/iceberg engine/glue catalog/partition evolution/#49 OK 3s 913ms
/iceberg/iceberg engine/glue catalog/partition evolution/#50 OK 4s 221ms
/iceberg/iceberg engine/glue catalog/partition evolution/#51 OK 3s 874ms
/iceberg/iceberg engine/glue catalog/partition evolution/#52 OK 4s 38ms
/iceberg/iceberg engine/glue catalog/partition evolution/#53 OK 3s 881ms
/iceberg/iceberg engine/glue catalog/partition evolution/#54 OK 4s 15ms
/iceberg/iceberg engine/glue catalog/partition evolution/#55 OK 3s 951ms
/iceberg/iceberg engine/glue catalog/partition evolution/#56 OK 3s 842ms
/iceberg/iceberg engine/glue catalog/partition evolution/#57 OK 3s 956ms
/iceberg/iceberg engine/glue catalog/partition evolution/#58 OK 4s 261ms
/iceberg/iceberg engine/glue catalog/partition evolution/#59 OK 3s 927ms
/iceberg/iceberg engine/glue catalog/partition evolution/#60 OK 3s 969ms
/iceberg/iceberg engine/glue catalog/partition evolution/#61 OK 3s 925ms
/iceberg/iceberg engine/glue catalog/partition evolution/#62 OK 4s 188ms
/iceberg/iceberg engine/glue catalog/partition evolution/#63 OK 3s 889ms
/iceberg/iceberg engine/glue catalog/partition evolution/#64 OK 3s 729ms
/iceberg/iceberg engine/glue catalog/partition evolution/#65 OK 4s 155ms
/iceberg/iceberg engine/glue catalog/partition evolution/#66 OK 3s 953ms
/iceberg/iceberg engine/glue catalog/partition evolution/#67 OK 3s 882ms
/iceberg/iceberg engine/glue catalog/partition evolution/#68 OK 4s 7ms
/iceberg/iceberg engine/glue catalog/partition evolution/#69 OK 4s 175ms
/iceberg/iceberg engine/glue catalog/partition evolution/#70 OK 3s 888ms
/iceberg/iceberg engine/glue catalog/partition evolution/#71 OK 3s 863ms
/iceberg/iceberg engine/glue catalog/partition evolution/#72 OK 3s 914ms
/iceberg/iceberg engine/glue catalog/partition evolution/#73 OK 4s 227ms
/iceberg/iceberg engine/glue catalog/partition evolution/#74 OK 3s 996ms
/iceberg/iceberg engine/glue catalog/partition evolution/#75 OK 4s 13ms
/iceberg/iceberg engine/glue catalog/partition evolution/#76 OK 3s 911ms
/iceberg/iceberg engine/glue catalog/partition evolution/#77 OK 4s 148ms
/iceberg/iceberg engine/glue catalog/partition evolution/#78 OK 4s 61ms
/iceberg/iceberg engine/glue catalog/partition evolution/#79 OK 3s 958ms
/iceberg/iceberg engine/glue catalog/partition evolution/#80 OK 4s 95ms
/iceberg/iceberg engine/glue catalog/partition evolution/#81 OK 4s 2ms
/iceberg/iceberg engine/glue catalog/partition evolution/#82 OK 4s 50ms
/iceberg/iceberg engine/glue catalog/partition evolution/#83 OK 3s 819ms
/iceberg/iceberg engine/glue catalog/partition evolution/#84 OK 3s 947ms
/iceberg/iceberg engine/glue catalog/partition evolution/#85 OK 3s 808ms
/iceberg/iceberg engine/glue catalog/partition evolution/#86 OK 4s 183ms
/iceberg/iceberg engine/glue catalog/partition evolution/#87 OK 3s 966ms
/iceberg/iceberg engine/glue catalog/partition evolution/#88 OK 3s 938ms
/iceberg/iceberg engine/glue catalog/partition evolution/#89 OK 3s 962ms
/iceberg/iceberg engine/glue catalog/partition evolution/#90 OK 4s 42ms
/iceberg/iceberg engine/glue catalog/partition evolution/#91 OK 3s 905ms
/iceberg/iceberg engine/glue catalog/partition evolution/#92 OK 3s 967ms
/iceberg/iceberg engine/glue catalog/partition evolution/#93 OK 3s 980ms
/iceberg/iceberg engine/glue catalog/partition evolution/#94 OK 4s 91ms
/iceberg/iceberg engine/glue catalog/partition evolution/#95 OK 3s 959ms
/iceberg/iceberg engine/glue catalog/partition evolution/#96 OK 3s 953ms
/iceberg/iceberg engine/glue catalog/partition evolution/#97 OK 3s 823ms
/iceberg/iceberg engine/glue catalog/partition evolution/#98 OK 4s 53ms
/iceberg/iceberg engine/glue catalog/partition evolution/#99 OK 3s 878ms
/iceberg/iceberg engine/glue catalog/iceberg partition pruning OK 12s 53ms
/iceberg/iceberg engine/glue catalog/iceberg partition pruning/check iceberg partition pruning with integer type XFail 2s 413ms
/iceberg/iceberg engine/glue catalog/iceberg partition pruning/check partition pruning with complex where clause XFail 2s 238ms
/iceberg/iceberg engine/glue catalog/iceberg partition pruning/partition pruning with date type XFail 2s 315ms
/iceberg/iceberg engine/glue catalog/iceberg partition pruning/non partitioned table OK 5s 84ms
/iceberg/iceberg engine/glue catalog/datatypes OK 8s 281ms
/iceberg/iceberg engine/glue catalog/datatypes/data types check where OK 8s 280ms
/iceberg/iceberg engine/glue catalog/iceberg iterator race condition OK 2m 55s
/iceberg/iceberg engine/glue catalog/iceberg iterator race condition/iceberg iterator race condition OK 2m 55s
/iceberg/iceberg engine/glue catalog/dot separated column names OK 2s 271ms
/iceberg/iceberg engine/glue catalog/dot separated column names/sanity dot separated column names OK 1s 55ms
/iceberg/iceberg engine/glue catalog/dot separated column names/all datatypes with dot separated columns OK 1s 215ms
/iceberg/iceberg engine/glue catalog/show_data_lake_catalogs hint OK 3s 266ms
/iceberg/iceberg engine/glue catalog/show_data_lake_catalogs hint/similar table names hint OK 3s 266ms
/iceberg/iceberg table engine OK 11m 50s
/iceberg/iceberg table engine/feature OK 7m 0s
/iceberg/iceberg table engine/feature/row policies OK 7m 0s
/iceberg/iceberg table engine/feature/row policies/combination #0 OK 368ms
/iceberg/iceberg table engine/feature/row policies/combination #1 OK 434ms
/iceberg/iceberg table engine/feature/row policies/combination #2 OK 420ms
/iceberg/iceberg table engine/feature/row policies/combination #3 OK 367ms
/iceberg/iceberg table engine/feature/row policies/combination #4 OK 399ms
/iceberg/iceberg table engine/feature/row policies/combination #5 OK 437ms
/iceberg/iceberg table engine/feature/row policies/combination #6 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #7 OK 413ms
/iceberg/iceberg table engine/feature/row policies/combination #8 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #9 OK 429ms
/iceberg/iceberg table engine/feature/row policies/combination #10 OK 435ms
/iceberg/iceberg table engine/feature/row policies/combination #11 OK 369ms
/iceberg/iceberg table engine/feature/row policies/combination #12 OK 399ms
/iceberg/iceberg table engine/feature/row policies/combination #13 OK 362ms
/iceberg/iceberg table engine/feature/row policies/combination #14 OK 367ms
/iceberg/iceberg table engine/feature/row policies/combination #15 OK 374ms
/iceberg/iceberg table engine/feature/row policies/combination #16 OK 365ms
/iceberg/iceberg table engine/feature/row policies/combination #17 OK 429ms
/iceberg/iceberg table engine/feature/row policies/combination #18 OK 426ms
/iceberg/iceberg table engine/feature/row policies/combination #19 OK 374ms
/iceberg/iceberg table engine/feature/row policies/combination #20 OK 397ms
/iceberg/iceberg table engine/feature/row policies/combination #21 OK 393ms
/iceberg/iceberg table engine/feature/row policies/combination #22 OK 403ms
/iceberg/iceberg table engine/feature/row policies/combination #23 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #24 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #25 OK 374ms
/iceberg/iceberg table engine/feature/row policies/combination #26 OK 409ms
/iceberg/iceberg table engine/feature/row policies/combination #27 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #28 OK 394ms
/iceberg/iceberg table engine/feature/row policies/combination #29 OK 476ms
/iceberg/iceberg table engine/feature/row policies/combination #30 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #31 OK 402ms
/iceberg/iceberg table engine/feature/row policies/combination #32 OK 378ms
/iceberg/iceberg table engine/feature/row policies/combination #33 OK 430ms
/iceberg/iceberg table engine/feature/row policies/combination #34 OK 457ms
/iceberg/iceberg table engine/feature/row policies/combination #35 OK 378ms
/iceberg/iceberg table engine/feature/row policies/combination #36 OK 412ms
/iceberg/iceberg table engine/feature/row policies/combination #37 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #38 OK 437ms
/iceberg/iceberg table engine/feature/row policies/combination #39 OK 370ms
/iceberg/iceberg table engine/feature/row policies/combination #40 OK 370ms
/iceberg/iceberg table engine/feature/row policies/combination #41 OK 412ms
/iceberg/iceberg table engine/feature/row policies/combination #42 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #43 OK 456ms
/iceberg/iceberg table engine/feature/row policies/combination #44 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #45 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #46 OK 449ms
/iceberg/iceberg table engine/feature/row policies/combination #47 OK 416ms
/iceberg/iceberg table engine/feature/row policies/combination #48 OK 457ms
/iceberg/iceberg table engine/feature/row policies/combination #49 OK 420ms
/iceberg/iceberg table engine/feature/row policies/combination #50 OK 372ms
/iceberg/iceberg table engine/feature/row policies/combination #51 OK 433ms
/iceberg/iceberg table engine/feature/row policies/combination #52 OK 406ms
/iceberg/iceberg table engine/feature/row policies/combination #53 OK 430ms
/iceberg/iceberg table engine/feature/row policies/combination #54 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #55 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #56 OK 464ms
/iceberg/iceberg table engine/feature/row policies/combination #57 OK 474ms
/iceberg/iceberg table engine/feature/row policies/combination #58 OK 437ms
/iceberg/iceberg table engine/feature/row policies/combination #59 OK 377ms
/iceberg/iceberg table engine/feature/row policies/combination #60 OK 440ms
/iceberg/iceberg table engine/feature/row policies/combination #61 OK 477ms
/iceberg/iceberg table engine/feature/row policies/combination #62 OK 434ms
/iceberg/iceberg table engine/feature/row policies/combination #63 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #64 OK 450ms
/iceberg/iceberg table engine/feature/row policies/combination #65 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #66 OK 413ms
/iceberg/iceberg table engine/feature/row policies/combination #67 OK 440ms
/iceberg/iceberg table engine/feature/row policies/combination #68 OK 409ms
/iceberg/iceberg table engine/feature/row policies/combination #69 OK 416ms
/iceberg/iceberg table engine/feature/row policies/combination #70 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #71 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #72 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #73 OK 403ms
/iceberg/iceberg table engine/feature/row policies/combination #74 OK 458ms
/iceberg/iceberg table engine/feature/row policies/combination #75 OK 405ms
/iceberg/iceberg table engine/feature/row policies/combination #76 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #77 OK 418ms
/iceberg/iceberg table engine/feature/row policies/combination #78 OK 373ms
/iceberg/iceberg table engine/feature/row policies/combination #79 OK 440ms
/iceberg/iceberg table engine/feature/row policies/combination #80 OK 460ms
/iceberg/iceberg table engine/feature/row policies/combination #81 OK 424ms
/iceberg/iceberg table engine/feature/row policies/combination #82 OK 377ms
/iceberg/iceberg table engine/feature/row policies/combination #83 OK 423ms
/iceberg/iceberg table engine/feature/row policies/combination #84 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #85 OK 414ms
/iceberg/iceberg table engine/feature/row policies/combination #86 OK 380ms
/iceberg/iceberg table engine/feature/row policies/combination #87 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #88 OK 453ms
/iceberg/iceberg table engine/feature/row policies/combination #89 OK 431ms
/iceberg/iceberg table engine/feature/row policies/combination #90 OK 386ms
/iceberg/iceberg table engine/feature/row policies/combination #91 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #92 OK 417ms
/iceberg/iceberg table engine/feature/row policies/combination #93 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #94 OK 373ms
/iceberg/iceberg table engine/feature/row policies/combination #95 OK 400ms
/iceberg/iceberg table engine/feature/row policies/combination #96 OK 435ms
/iceberg/iceberg table engine/feature/row policies/combination #97 OK 390ms
/iceberg/iceberg table engine/feature/row policies/combination #98 OK 422ms
/iceberg/iceberg table engine/feature/row policies/combination #99 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #100 OK 409ms
/iceberg/iceberg table engine/feature/row policies/combination #101 OK 424ms
/iceberg/iceberg table engine/feature/row policies/combination #102 OK 416ms
/iceberg/iceberg table engine/feature/row policies/combination #103 OK 430ms
/iceberg/iceberg table engine/feature/row policies/combination #104 OK 430ms
/iceberg/iceberg table engine/feature/row policies/combination #105 OK 379ms
/iceberg/iceberg table engine/feature/row policies/combination #106 OK 454ms
/iceberg/iceberg table engine/feature/row policies/combination #107 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #108 OK 380ms
/iceberg/iceberg table engine/feature/row policies/combination #109 OK 374ms
/iceberg/iceberg table engine/feature/row policies/combination #110 OK 380ms
/iceberg/iceberg table engine/feature/row policies/combination #111 OK 379ms
/iceberg/iceberg table engine/feature/row policies/combination #112 OK 370ms
/iceberg/iceberg table engine/feature/row policies/combination #113 OK 439ms
/iceberg/iceberg table engine/feature/row policies/combination #114 OK 385ms
/iceberg/iceberg table engine/feature/row policies/combination #115 OK 396ms
/iceberg/iceberg table engine/feature/row policies/combination #116 OK 423ms
/iceberg/iceberg table engine/feature/row policies/combination #117 OK 406ms
/iceberg/iceberg table engine/feature/row policies/combination #118 OK 364ms
/iceberg/iceberg table engine/feature/row policies/combination #119 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #120 OK 439ms
/iceberg/iceberg table engine/feature/row policies/combination #121 OK 399ms
/iceberg/iceberg table engine/feature/row policies/combination #122 OK 366ms
/iceberg/iceberg table engine/feature/row policies/combination #123 OK 444ms
/iceberg/iceberg table engine/feature/row policies/combination #124 OK 403ms
/iceberg/iceberg table engine/feature/row policies/combination #125 OK 452ms
/iceberg/iceberg table engine/feature/row policies/combination #126 OK 439ms
/iceberg/iceberg table engine/feature/row policies/combination #127 OK 407ms
/iceberg/iceberg table engine/feature/row policies/combination #128 OK 402ms
/iceberg/iceberg table engine/feature/row policies/combination #129 OK 397ms
/iceberg/iceberg table engine/feature/row policies/combination #130 OK 374ms
/iceberg/iceberg table engine/feature/row policies/combination #131 OK 432ms
/iceberg/iceberg table engine/feature/row policies/combination #132 OK 410ms
/iceberg/iceberg table engine/feature/row policies/combination #133 OK 450ms
/iceberg/iceberg table engine/feature/row policies/combination #134 OK 460ms
/iceberg/iceberg table engine/feature/row policies/combination #135 OK 379ms
/iceberg/iceberg table engine/feature/row policies/combination #136 OK 457ms
/iceberg/iceberg table engine/feature/row policies/combination #137 OK 421ms
/iceberg/iceberg table engine/feature/row policies/combination #138 OK 433ms
/iceberg/iceberg table engine/feature/row policies/combination #139 OK 413ms
/iceberg/iceberg table engine/feature/row policies/combination #140 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #141 OK 446ms
/iceberg/iceberg table engine/feature/row policies/combination #142 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #143 OK 382ms
/iceberg/iceberg table engine/feature/row policies/combination #144 OK 430ms
/iceberg/iceberg table engine/feature/row policies/combination #145 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #146 OK 377ms
/iceberg/iceberg table engine/feature/row policies/combination #147 OK 452ms
/iceberg/iceberg table engine/feature/row policies/combination #148 OK 399ms
/iceberg/iceberg table engine/feature/row policies/combination #149 OK 420ms
/iceberg/iceberg table engine/feature/row policies/combination #150 OK 368ms
/iceberg/iceberg table engine/feature/row policies/combination #151 OK 396ms
/iceberg/iceberg table engine/feature/row policies/combination #152 OK 419ms
/iceberg/iceberg table engine/feature/row policies/combination #153 OK 400ms
/iceberg/iceberg table engine/feature/row policies/combination #154 OK 410ms
/iceberg/iceberg table engine/feature/row policies/combination #155 OK 446ms
/iceberg/iceberg table engine/feature/row policies/combination #156 OK 451ms
/iceberg/iceberg table engine/feature/row policies/combination #157 OK 430ms
/iceberg/iceberg table engine/feature/row policies/combination #158 OK 420ms
/iceberg/iceberg table engine/feature/row policies/combination #159 OK 421ms
/iceberg/iceberg table engine/feature/row policies/combination #160 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #161 OK 369ms
/iceberg/iceberg table engine/feature/row policies/combination #162 OK 429ms
/iceberg/iceberg table engine/feature/row policies/combination #163 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #164 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #165 OK 435ms
/iceberg/iceberg table engine/feature/row policies/combination #166 OK 397ms
/iceberg/iceberg table engine/feature/row policies/combination #167 OK 373ms
/iceberg/iceberg table engine/feature/row policies/combination #168 OK 400ms
/iceberg/iceberg table engine/feature/row policies/combination #169 OK 366ms
/iceberg/iceberg table engine/feature/row policies/combination #170 OK 426ms
/iceberg/iceberg table engine/feature/row policies/combination #171 OK 403ms
/iceberg/iceberg table engine/feature/row policies/combination #172 OK 415ms
/iceberg/iceberg table engine/feature/row policies/combination #173 OK 439ms
/iceberg/iceberg table engine/feature/row policies/combination #174 OK 425ms
/iceberg/iceberg table engine/feature/row policies/combination #175 OK 397ms
/iceberg/iceberg table engine/feature/row policies/combination #176 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #177 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #178 OK 367ms
/iceberg/iceberg table engine/feature/row policies/combination #179 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #180 OK 414ms
/iceberg/iceberg table engine/feature/row policies/combination #181 OK 406ms
/iceberg/iceberg table engine/feature/row policies/combination #182 OK 423ms
/iceberg/iceberg table engine/feature/row policies/combination #183 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #184 OK 402ms
/iceberg/iceberg table engine/feature/row policies/combination #185 OK 413ms
/iceberg/iceberg table engine/feature/row policies/combination #186 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #187 OK 407ms
/iceberg/iceberg table engine/feature/row policies/combination #188 OK 396ms
/iceberg/iceberg table engine/feature/row policies/combination #189 OK 410ms
/iceberg/iceberg table engine/feature/row policies/combination #190 OK 410ms
/iceberg/iceberg table engine/feature/row policies/combination #191 OK 451ms
/iceberg/iceberg table engine/feature/row policies/combination #192 OK 391ms
/iceberg/iceberg table engine/feature/row policies/combination #193 OK 394ms
/iceberg/iceberg table engine/feature/row policies/combination #194 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #195 OK 373ms
/iceberg/iceberg table engine/feature/row policies/combination #196 OK 405ms
/iceberg/iceberg table engine/feature/row policies/combination #197 OK 433ms
/iceberg/iceberg table engine/feature/row policies/combination #198 OK 460ms
/iceberg/iceberg table engine/feature/row policies/combination #199 OK 446ms
/iceberg/iceberg table engine/feature/row policies/combination #200 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #201 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #202 OK 409ms
/iceberg/iceberg table engine/feature/row policies/combination #203 OK 448ms
/iceberg/iceberg table engine/feature/row policies/combination #204 OK 427ms
/iceberg/iceberg table engine/feature/row policies/combination #205 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #206 OK 414ms
/iceberg/iceberg table engine/feature/row policies/combination #207 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #208 OK 409ms
/iceberg/iceberg table engine/feature/row policies/combination #209 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #210 OK 409ms
/iceberg/iceberg table engine/feature/row policies/combination #211 OK 395ms
/iceberg/iceberg table engine/feature/row policies/combination #212 OK 415ms
/iceberg/iceberg table engine/feature/row policies/combination #213 OK 374ms
/iceberg/iceberg table engine/feature/row policies/combination #214 OK 416ms
/iceberg/iceberg table engine/feature/row policies/combination #215 OK 429ms
/iceberg/iceberg table engine/feature/row policies/combination #216 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #217 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #218 OK 399ms
/iceberg/iceberg table engine/feature/row policies/combination #219 OK 432ms
/iceberg/iceberg table engine/feature/row policies/combination #220 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #221 OK 368ms
/iceberg/iceberg table engine/feature/row policies/combination #222 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #223 OK 457ms
/iceberg/iceberg table engine/feature/row policies/combination #224 OK 426ms
/iceberg/iceberg table engine/feature/row policies/combination #225 OK 367ms
/iceberg/iceberg table engine/feature/row policies/combination #226 OK 368ms
/iceberg/iceberg table engine/feature/row policies/combination #227 OK 373ms
/iceberg/iceberg table engine/feature/row policies/combination #228 OK 446ms
/iceberg/iceberg table engine/feature/row policies/combination #229 OK 448ms
/iceberg/iceberg table engine/feature/row policies/combination #230 OK 440ms
/iceberg/iceberg table engine/feature/row policies/combination #231 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #232 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #233 OK 440ms
/iceberg/iceberg table engine/feature/row policies/combination #234 OK 414ms
/iceberg/iceberg table engine/feature/row policies/combination #235 OK 426ms
/iceberg/iceberg table engine/feature/row policies/combination #236 OK 454ms
/iceberg/iceberg table engine/feature/row policies/combination #237 OK 419ms
/iceberg/iceberg table engine/feature/row policies/combination #238 OK 405ms
/iceberg/iceberg table engine/feature/row policies/combination #239 OK 405ms
/iceberg/iceberg table engine/feature/row policies/combination #240 OK 415ms
/iceberg/iceberg table engine/feature/row policies/combination #241 OK 360ms
/iceberg/iceberg table engine/feature/row policies/combination #242 OK 409ms
/iceberg/iceberg table engine/feature/row policies/combination #243 OK 363ms
/iceberg/iceberg table engine/feature/row policies/combination #244 OK 450ms
/iceberg/iceberg table engine/feature/row policies/combination #245 OK 363ms
/iceberg/iceberg table engine/feature/row policies/combination #246 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #247 OK 435ms
/iceberg/iceberg table engine/feature/row policies/combination #248 OK 396ms
/iceberg/iceberg table engine/feature/row policies/combination #249 OK 444ms
/iceberg/iceberg table engine/feature/row policies/combination #250 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #251 OK 451ms
/iceberg/iceberg table engine/feature/row policies/combination #252 OK 400ms
/iceberg/iceberg table engine/feature/row policies/combination #253 OK 432ms
/iceberg/iceberg table engine/feature/row policies/combination #254 OK 424ms
/iceberg/iceberg table engine/feature/row policies/combination #255 OK 452ms
/iceberg/iceberg table engine/feature/row policies/combination #256 OK 454ms
/iceberg/iceberg table engine/feature/row policies/combination #257 OK 423ms
/iceberg/iceberg table engine/feature/row policies/combination #258 OK 412ms
/iceberg/iceberg table engine/feature/row policies/combination #259 OK 469ms
/iceberg/iceberg table engine/feature/row policies/combination #260 OK 366ms
/iceberg/iceberg table engine/feature/row policies/combination #261 OK 454ms
/iceberg/iceberg table engine/feature/row policies/combination #262 OK 431ms
/iceberg/iceberg table engine/feature/row policies/combination #263 OK 452ms
/iceberg/iceberg table engine/feature/row policies/combination #264 OK 432ms
/iceberg/iceberg table engine/feature/row policies/combination #265 OK 397ms
/iceberg/iceberg table engine/feature/row policies/combination #266 OK 388ms
/iceberg/iceberg table engine/feature/row policies/combination #267 OK 362ms
/iceberg/iceberg table engine/feature/row policies/combination #268 OK 437ms
/iceberg/iceberg table engine/feature/row policies/combination #269 OK 374ms
/iceberg/iceberg table engine/feature/row policies/combination #270 OK 410ms
/iceberg/iceberg table engine/feature/row policies/combination #271 OK 417ms
/iceberg/iceberg table engine/feature/row policies/combination #272 OK 415ms
/iceberg/iceberg table engine/feature/row policies/combination #273 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #274 OK 451ms
/iceberg/iceberg table engine/feature/row policies/combination #275 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #276 OK 440ms
/iceberg/iceberg table engine/feature/row policies/combination #277 OK 380ms
/iceberg/iceberg table engine/feature/row policies/combination #278 OK 392ms
/iceberg/iceberg table engine/feature/row policies/combination #279 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #280 OK 405ms
/iceberg/iceberg table engine/feature/row policies/combination #281 OK 410ms
/iceberg/iceberg table engine/feature/row policies/combination #282 OK 374ms
/iceberg/iceberg table engine/feature/row policies/combination #283 OK 366ms
/iceberg/iceberg table engine/feature/row policies/combination #284 OK 359ms
/iceberg/iceberg table engine/feature/row policies/combination #285 OK 440ms
/iceberg/iceberg table engine/feature/row policies/combination #286 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #287 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #288 OK 406ms
/iceberg/iceberg table engine/feature/row policies/combination #289 OK 429ms
/iceberg/iceberg table engine/feature/row policies/combination #290 OK 427ms
/iceberg/iceberg table engine/feature/row policies/combination #291 OK 440ms
/iceberg/iceberg table engine/feature/row policies/combination #292 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #293 OK 355ms
/iceberg/iceberg table engine/feature/row policies/combination #294 OK 363ms
/iceberg/iceberg table engine/feature/row policies/combination #295 OK 437ms
/iceberg/iceberg table engine/feature/row policies/combination #296 OK 361ms
/iceberg/iceberg table engine/feature/row policies/combination #297 OK 451ms
/iceberg/iceberg table engine/feature/row policies/combination #298 OK 370ms
/iceberg/iceberg table engine/feature/row policies/combination #299 OK 374ms
/iceberg/iceberg table engine/feature/row policies/combination #300 OK 439ms
/iceberg/iceberg table engine/feature/row policies/combination #301 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #302 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #303 OK 407ms
/iceberg/iceberg table engine/feature/row policies/combination #304 OK 460ms
/iceberg/iceberg table engine/feature/row policies/combination #305 OK 418ms
/iceberg/iceberg table engine/feature/row policies/combination #306 OK 380ms
/iceberg/iceberg table engine/feature/row policies/combination #307 OK 431ms
/iceberg/iceberg table engine/feature/row policies/combination #308 OK 444ms
/iceberg/iceberg table engine/feature/row policies/combination #309 OK 396ms
/iceberg/iceberg table engine/feature/row policies/combination #310 OK 354ms
/iceberg/iceberg table engine/feature/row policies/combination #311 OK 429ms
/iceberg/iceberg table engine/feature/row policies/combination #312 OK 424ms
/iceberg/iceberg table engine/feature/row policies/combination #313 OK 446ms
/iceberg/iceberg table engine/feature/row policies/combination #314 OK 430ms
/iceberg/iceberg table engine/feature/row policies/combination #315 OK 442ms
/iceberg/iceberg table engine/feature/row policies/combination #316 OK 370ms
/iceberg/iceberg table engine/feature/row policies/combination #317 OK 382ms
/iceberg/iceberg table engine/feature/row policies/combination #318 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #319 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #320 OK 439ms
/iceberg/iceberg table engine/feature/row policies/combination #321 OK 413ms
/iceberg/iceberg table engine/feature/row policies/combination #322 OK 406ms
/iceberg/iceberg table engine/feature/row policies/combination #323 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #324 OK 380ms
/iceberg/iceberg table engine/feature/row policies/combination #325 OK 379ms
/iceberg/iceberg table engine/feature/row policies/combination #326 OK 452ms
/iceberg/iceberg table engine/feature/row policies/combination #327 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #328 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #329 OK 407ms
/iceberg/iceberg table engine/feature/row policies/combination #330 OK 370ms
/iceberg/iceberg table engine/feature/row policies/combination #331 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #332 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #333 OK 444ms
/iceberg/iceberg table engine/feature/row policies/combination #334 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #335 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #336 OK 373ms
/iceberg/iceberg table engine/feature/row policies/combination #337 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #338 OK 400ms
/iceberg/iceberg table engine/feature/row policies/combination #339 OK 455ms
/iceberg/iceberg table engine/feature/row policies/combination #340 OK 372ms
/iceberg/iceberg table engine/feature/row policies/combination #341 OK 372ms
/iceberg/iceberg table engine/feature/row policies/combination #342 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #343 OK 370ms
/iceberg/iceberg table engine/feature/row policies/combination #344 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #345 OK 364ms
/iceberg/iceberg table engine/feature/row policies/combination #346 OK 365ms
/iceberg/iceberg table engine/feature/row policies/combination #347 OK 406ms
/iceberg/iceberg table engine/feature/row policies/combination #348 OK 400ms
/iceberg/iceberg table engine/feature/row policies/combination #349 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #350 OK 437ms
/iceberg/iceberg table engine/feature/row policies/combination #351 OK 362ms
/iceberg/iceberg table engine/feature/row policies/combination #352 OK 393ms
/iceberg/iceberg table engine/feature/row policies/combination #353 OK 457ms
/iceberg/iceberg table engine/feature/row policies/combination #354 OK 460ms
/iceberg/iceberg table engine/feature/row policies/combination #355 OK 437ms
/iceberg/iceberg table engine/feature/row policies/combination #356 OK 410ms
/iceberg/iceberg table engine/feature/row policies/combination #357 OK 442ms
/iceberg/iceberg table engine/feature/row policies/combination #358 OK 391ms
/iceberg/iceberg table engine/feature/row policies/combination #359 OK 439ms
/iceberg/iceberg table engine/feature/row policies/combination #360 OK 425ms
/iceberg/iceberg table engine/feature/row policies/combination #361 OK 432ms
/iceberg/iceberg table engine/feature/row policies/combination #362 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #363 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #364 OK 412ms
/iceberg/iceberg table engine/feature/row policies/combination #365 OK 459ms
/iceberg/iceberg table engine/feature/row policies/combination #366 OK 444ms
/iceberg/iceberg table engine/feature/row policies/combination #367 OK 393ms
/iceberg/iceberg table engine/feature/row policies/combination #368 OK 419ms
/iceberg/iceberg table engine/feature/row policies/combination #369 OK 450ms
/iceberg/iceberg table engine/feature/row policies/combination #370 OK 448ms
/iceberg/iceberg table engine/feature/row policies/combination #371 OK 432ms
/iceberg/iceberg table engine/feature/row policies/combination #372 OK 442ms
/iceberg/iceberg table engine/feature/row policies/combination #373 OK 368ms
/iceberg/iceberg table engine/feature/row policies/combination #374 OK 367ms
/iceberg/iceberg table engine/feature/row policies/combination #375 OK 451ms
/iceberg/iceberg table engine/feature/row policies/combination #376 OK 405ms
/iceberg/iceberg table engine/feature/row policies/combination #377 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #378 OK 363ms
/iceberg/iceberg table engine/feature/row policies/combination #379 OK 451ms
/iceberg/iceberg table engine/feature/row policies/combination #380 OK 435ms
/iceberg/iceberg table engine/feature/row policies/combination #381 OK 420ms
/iceberg/iceberg table engine/feature/row policies/combination #382 OK 448ms
/iceberg/iceberg table engine/feature/row policies/combination #383 OK 412ms
/iceberg/iceberg table engine/feature/row policies/combination #384 OK 424ms
/iceberg/iceberg table engine/feature/row policies/combination #385 OK 410ms
/iceberg/iceberg table engine/feature/row policies/combination #386 OK 405ms
/iceberg/iceberg table engine/feature/row policies/combination #387 OK 439ms
/iceberg/iceberg table engine/feature/row policies/combination #388 OK 424ms
/iceberg/iceberg table engine/feature/row policies/combination #389 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #390 OK 412ms
/iceberg/iceberg table engine/feature/row policies/combination #391 OK 380ms
/iceberg/iceberg table engine/feature/row policies/combination #392 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #393 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #394 OK 455ms
/iceberg/iceberg table engine/feature/row policies/combination #395 OK 405ms
/iceberg/iceberg table engine/feature/row policies/combination #396 OK 407ms
/iceberg/iceberg table engine/feature/row policies/combination #397 OK 398ms
/iceberg/iceberg table engine/feature/row policies/combination #398 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #399 OK 380ms
/iceberg/iceberg table engine/feature/row policies/combination #400 OK 407ms
/iceberg/iceberg table engine/feature/row policies/combination #401 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #402 OK 432ms
/iceberg/iceberg table engine/feature/row policies/combination #403 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #404 OK 435ms
/iceberg/iceberg table engine/feature/row policies/combination #405 OK 409ms
/iceberg/iceberg table engine/feature/row policies/combination #406 OK 372ms
/iceberg/iceberg table engine/feature/row policies/combination #407 OK 387ms
/iceberg/iceberg table engine/feature/row policies/combination #408 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #409 OK 439ms
/iceberg/iceberg table engine/feature/row policies/combination #410 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #411 OK 402ms
/iceberg/iceberg table engine/feature/row policies/combination #412 OK 412ms
/iceberg/iceberg table engine/feature/row policies/combination #413 OK 368ms
/iceberg/iceberg table engine/feature/row policies/combination #414 OK 431ms
/iceberg/iceberg table engine/feature/row policies/combination #415 OK 416ms
/iceberg/iceberg table engine/feature/row policies/combination #416 OK 419ms
/iceberg/iceberg table engine/feature/row policies/combination #417 OK 448ms
/iceberg/iceberg table engine/feature/row policies/combination #418 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #419 OK 410ms
/iceberg/iceberg table engine/feature/row policies/combination #420 OK 400ms
/iceberg/iceberg table engine/feature/row policies/combination #421 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #422 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #423 OK 409ms
/iceberg/iceberg table engine/feature/row policies/combination #424 OK 469ms
/iceberg/iceberg table engine/feature/row policies/combination #425 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #426 OK 386ms
/iceberg/iceberg table engine/feature/row policies/combination #427 OK 406ms
/iceberg/iceberg table engine/feature/row policies/combination #428 OK 379ms
/iceberg/iceberg table engine/feature/row policies/combination #429 OK 432ms
/iceberg/iceberg table engine/feature/row policies/combination #430 OK 440ms
/iceberg/iceberg table engine/feature/row policies/combination #431 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #432 OK 390ms
/iceberg/iceberg table engine/feature/row policies/combination #433 OK 428ms
/iceberg/iceberg table engine/feature/row policies/combination #434 OK 369ms
/iceberg/iceberg table engine/feature/row policies/combination #435 OK 403ms
/iceberg/iceberg table engine/feature/row policies/combination #436 OK 431ms
/iceberg/iceberg table engine/feature/row policies/combination #437 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #438 OK 382ms
/iceberg/iceberg table engine/feature/row policies/combination #439 OK 456ms
/iceberg/iceberg table engine/feature/row policies/combination #440 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #441 OK 369ms
/iceberg/iceberg table engine/feature/row policies/combination #442 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #443 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #444 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #445 OK 366ms
/iceberg/iceberg table engine/feature/row policies/combination #446 OK 437ms
/iceberg/iceberg table engine/feature/row policies/combination #447 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #448 OK 398ms
/iceberg/iceberg table engine/feature/row policies/combination #449 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #450 OK 456ms
/iceberg/iceberg table engine/feature/row policies/combination #451 OK 459ms
/iceberg/iceberg table engine/feature/row policies/combination #452 OK 373ms
/iceberg/iceberg table engine/feature/row policies/combination #453 OK 379ms
/iceberg/iceberg table engine/feature/row policies/combination #454 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #455 OK 440ms
/iceberg/iceberg table engine/feature/row policies/combination #456 OK 453ms
/iceberg/iceberg table engine/feature/row policies/combination #457 OK 374ms
/iceberg/iceberg table engine/feature/row policies/combination #458 OK 367ms
/iceberg/iceberg table engine/feature/row policies/combination #459 OK 435ms
/iceberg/iceberg table engine/feature/row policies/combination #460 OK 453ms
/iceberg/iceberg table engine/feature/row policies/combination #461 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #462 OK 457ms
/iceberg/iceberg table engine/feature/row policies/combination #463 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #464 OK 383ms
/iceberg/iceberg table engine/feature/row policies/combination #465 OK 377ms
/iceberg/iceberg table engine/feature/row policies/combination #466 OK 400ms
/iceberg/iceberg table engine/feature/row policies/combination #467 OK 418ms
/iceberg/iceberg table engine/feature/row policies/combination #468 OK 400ms
/iceberg/iceberg table engine/feature/row policies/combination #469 OK 403ms
/iceberg/iceberg table engine/feature/row policies/combination #470 OK 380ms
/iceberg/iceberg table engine/feature/row policies/combination #471 OK 409ms
/iceberg/iceberg table engine/feature/row policies/combination #472 OK 403ms
/iceberg/iceberg table engine/feature/row policies/combination #473 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #474 OK 374ms
/iceberg/iceberg table engine/feature/row policies/combination #475 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #476 OK 377ms
/iceberg/iceberg table engine/feature/row policies/combination #477 OK 367ms
/iceberg/iceberg table engine/feature/row policies/combination #478 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #479 OK 446ms
/iceberg/iceberg table engine/feature/row policies/combination #480 OK 418ms
/iceberg/iceberg table engine/feature/row policies/combination #481 OK 372ms
/iceberg/iceberg table engine/feature/row policies/combination #482 OK 360ms
/iceberg/iceberg table engine/feature/row policies/combination #483 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #484 OK 454ms
/iceberg/iceberg table engine/feature/row policies/combination #485 OK 370ms
/iceberg/iceberg table engine/feature/row policies/combination #486 OK 429ms
/iceberg/iceberg table engine/feature/row policies/combination #487 OK 434ms
/iceberg/iceberg table engine/feature/row policies/combination #488 OK 466ms
/iceberg/iceberg table engine/feature/row policies/combination #489 OK 452ms
/iceberg/iceberg table engine/feature/row policies/combination #490 OK 388ms
/iceberg/iceberg table engine/feature/row policies/combination #491 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #492 OK 414ms
/iceberg/iceberg table engine/feature/row policies/combination #493 OK 413ms
/iceberg/iceberg table engine/feature/row policies/combination #494 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #495 OK 374ms
/iceberg/iceberg table engine/feature/row policies/combination #496 OK 463ms
/iceberg/iceberg table engine/feature/row policies/combination #497 OK 414ms
/iceberg/iceberg table engine/feature/row policies/combination #498 OK 421ms
/iceberg/iceberg table engine/feature/row policies/combination #499 OK 377ms
/iceberg/iceberg table engine/feature/row policies/combination #500 OK 547ms
/iceberg/iceberg table engine/feature/row policies/combination #501 OK 433ms
/iceberg/iceberg table engine/feature/row policies/combination #502 OK 373ms
/iceberg/iceberg table engine/feature/row policies/combination #503 OK 420ms
/iceberg/iceberg table engine/feature/row policies/combination #504 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #505 OK 446ms
/iceberg/iceberg table engine/feature/row policies/combination #506 OK 428ms
/iceberg/iceberg table engine/feature/row policies/combination #507 OK 400ms
/iceberg/iceberg table engine/feature/row policies/combination #508 OK 374ms
/iceberg/iceberg table engine/feature/row policies/combination #509 OK 414ms
/iceberg/iceberg table engine/feature/row policies/combination #510 OK 450ms
/iceberg/iceberg table engine/feature/row policies/combination #511 OK 453ms
/iceberg/iceberg table engine/feature/row policies/combination #512 OK 373ms
/iceberg/iceberg table engine/feature/row policies/combination #513 OK 400ms
/iceberg/iceberg table engine/feature/row policies/combination #514 OK 425ms
/iceberg/iceberg table engine/feature/row policies/combination #515 OK 391ms
/iceberg/iceberg table engine/feature/row policies/combination #516 OK 421ms
/iceberg/iceberg table engine/feature/row policies/combination #517 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #518 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #519 OK 456ms
/iceberg/iceberg table engine/feature/row policies/combination #520 OK 487ms
/iceberg/iceberg table engine/feature/row policies/combination #521 OK 373ms
/iceberg/iceberg table engine/feature/row policies/combination #522 OK 448ms
/iceberg/iceberg table engine/feature/row policies/combination #523 OK 435ms
/iceberg/iceberg table engine/feature/row policies/combination #524 OK 407ms
/iceberg/iceberg table engine/feature/row policies/combination #525 OK 372ms
/iceberg/iceberg table engine/feature/row policies/combination #526 OK 405ms
/iceberg/iceberg table engine/feature/row policies/combination #527 OK 423ms
/iceberg/iceberg table engine/feature/row policies/combination #528 OK 403ms
/iceberg/iceberg table engine/feature/row policies/combination #529 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #530 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #531 OK 419ms
/iceberg/iceberg table engine/feature/row policies/combination #532 OK 403ms
/iceberg/iceberg table engine/feature/row policies/combination #533 OK 407ms
/iceberg/iceberg table engine/feature/row policies/combination #534 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #535 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #536 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #537 OK 437ms
/iceberg/iceberg table engine/feature/row policies/combination #538 OK 435ms
/iceberg/iceberg table engine/feature/row policies/combination #539 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #540 OK 407ms
/iceberg/iceberg table engine/feature/row policies/combination #541 OK 459ms
/iceberg/iceberg table engine/feature/row policies/combination #542 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #543 OK 406ms
/iceberg/iceberg table engine/feature/row policies/combination #544 OK 366ms
/iceberg/iceberg table engine/feature/row policies/combination #545 OK 379ms
/iceberg/iceberg table engine/feature/row policies/combination #546 OK 450ms
/iceberg/iceberg table engine/feature/row policies/combination #547 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #548 OK 372ms
/iceberg/iceberg table engine/feature/row policies/combination #549 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #550 OK 435ms
/iceberg/iceberg table engine/feature/row policies/combination #551 OK 366ms
/iceberg/iceberg table engine/feature/row policies/combination #552 OK 366ms
/iceberg/iceberg table engine/feature/row policies/combination #553 OK 400ms
/iceberg/iceberg table engine/feature/row policies/combination #554 OK 462ms
/iceberg/iceberg table engine/feature/row policies/combination #555 OK 369ms
/iceberg/iceberg table engine/feature/row policies/combination #556 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #557 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #558 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #559 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #560 OK 456ms
/iceberg/iceberg table engine/feature/row policies/combination #561 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #562 OK 429ms
/iceberg/iceberg table engine/feature/row policies/combination #563 OK 396ms
/iceberg/iceberg table engine/feature/row policies/combination #564 OK 374ms
/iceberg/iceberg table engine/feature/row policies/combination #565 OK 454ms
/iceberg/iceberg table engine/feature/row policies/combination #566 OK 434ms
/iceberg/iceberg table engine/feature/row policies/combination #567 OK 414ms
/iceberg/iceberg table engine/feature/row policies/combination #568 OK 430ms
/iceberg/iceberg table engine/feature/row policies/combination #569 OK 414ms
/iceberg/iceberg table engine/feature/row policies/combination #570 OK 363ms
/iceberg/iceberg table engine/feature/row policies/combination #571 OK 368ms
/iceberg/iceberg table engine/feature/row policies/combination #572 OK 380ms
/iceberg/iceberg table engine/feature/row policies/combination #573 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #574 OK 414ms
/iceberg/iceberg table engine/feature/row policies/combination #575 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #576 OK 403ms
/iceberg/iceberg table engine/feature/row policies/combination #577 OK 397ms
/iceberg/iceberg table engine/feature/row policies/combination #578 OK 373ms
/iceberg/iceberg table engine/feature/row policies/combination #579 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #580 OK 378ms
/iceberg/iceberg table engine/feature/row policies/combination #581 OK 384ms
/iceberg/iceberg table engine/feature/row policies/combination #582 OK 442ms
/iceberg/iceberg table engine/feature/row policies/combination #583 OK 383ms
/iceberg/iceberg table engine/feature/row policies/combination #584 OK 398ms
/iceberg/iceberg table engine/feature/row policies/combination #585 OK 429ms
/iceberg/iceberg table engine/feature/row policies/combination #586 OK 382ms
/iceberg/iceberg table engine/feature/row policies/combination #587 OK 452ms
/iceberg/iceberg table engine/feature/row policies/combination #588 OK 425ms
/iceberg/iceberg table engine/feature/row policies/combination #589 OK 442ms
/iceberg/iceberg table engine/feature/row policies/combination #590 OK 394ms
/iceberg/iceberg table engine/feature/row policies/combination #591 OK 369ms
/iceberg/iceberg table engine/feature/row policies/combination #592 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #593 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #594 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #595 OK 423ms
/iceberg/iceberg table engine/feature/row policies/combination #596 OK 465ms
/iceberg/iceberg table engine/feature/row policies/combination #597 OK 402ms
/iceberg/iceberg table engine/feature/row policies/combination #598 OK 413ms
/iceberg/iceberg table engine/feature/row policies/combination #599 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #600 OK 412ms
/iceberg/iceberg table engine/feature/row policies/combination #601 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #602 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #603 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #604 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #605 OK 418ms
/iceberg/iceberg table engine/feature/row policies/combination #606 OK 364ms
/iceberg/iceberg table engine/feature/row policies/combination #607 OK 400ms
/iceberg/iceberg table engine/feature/row policies/combination #608 OK 415ms
/iceberg/iceberg table engine/feature/row policies/combination #609 OK 416ms
/iceberg/iceberg table engine/feature/row policies/combination #610 OK 429ms
/iceberg/iceberg table engine/feature/row policies/combination #611 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #612 OK 402ms
/iceberg/iceberg table engine/feature/row policies/combination #613 OK 372ms
/iceberg/iceberg table engine/feature/row policies/combination #614 OK 395ms
/iceberg/iceberg table engine/feature/row policies/combination #615 OK 368ms
/iceberg/iceberg table engine/feature/row policies/combination #616 OK 444ms
/iceberg/iceberg table engine/feature/row policies/combination #617 OK 370ms
/iceberg/iceberg table engine/feature/row policies/combination #618 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #619 OK 369ms
/iceberg/iceberg table engine/feature/row policies/combination #620 OK 397ms
/iceberg/iceberg table engine/feature/row policies/combination #621 OK 402ms
/iceberg/iceberg table engine/feature/row policies/combination #622 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #623 OK 377ms
/iceberg/iceberg table engine/feature/row policies/combination #624 OK 450ms
/iceberg/iceberg table engine/feature/row policies/combination #625 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #626 OK 369ms
/iceberg/iceberg table engine/feature/row policies/combination #627 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #628 OK 381ms
/iceberg/iceberg table engine/feature/row policies/combination #629 OK 423ms
/iceberg/iceberg table engine/feature/row policies/combination #630 OK 449ms
/iceberg/iceberg table engine/feature/row policies/combination #631 OK 370ms
/iceberg/iceberg table engine/feature/row policies/combination #632 OK 424ms
/iceberg/iceberg table engine/feature/row policies/combination #633 OK 431ms
/iceberg/iceberg table engine/feature/row policies/combination #634 OK 435ms
/iceberg/iceberg table engine/feature/row policies/combination #635 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #636 OK 429ms
/iceberg/iceberg table engine/feature/row policies/combination #637 OK 425ms
/iceberg/iceberg table engine/feature/row policies/combination #638 OK 451ms
/iceberg/iceberg table engine/feature/row policies/combination #639 OK 397ms
/iceberg/iceberg table engine/feature/row policies/combination #640 OK 383ms
/iceberg/iceberg table engine/feature/row policies/combination #641 OK 370ms
/iceberg/iceberg table engine/feature/row policies/combination #642 OK 399ms
/iceberg/iceberg table engine/feature/row policies/combination #643 OK 403ms
/iceberg/iceberg table engine/feature/row policies/combination #644 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #645 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #646 OK 370ms
/iceberg/iceberg table engine/feature/row policies/combination #647 OK 403ms
/iceberg/iceberg table engine/feature/row policies/combination #648 OK 373ms
/iceberg/iceberg table engine/feature/row policies/combination #649 OK 399ms
/iceberg/iceberg table engine/feature/row policies/combination #650 OK 399ms
/iceberg/iceberg table engine/feature/row policies/combination #651 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #652 OK 440ms
/iceberg/iceberg table engine/feature/row policies/combination #653 OK 415ms
/iceberg/iceberg table engine/feature/row policies/combination #654 OK 373ms
/iceberg/iceberg table engine/feature/row policies/combination #655 OK 433ms
/iceberg/iceberg table engine/feature/row policies/combination #656 OK 406ms
/iceberg/iceberg table engine/feature/row policies/combination #657 OK 439ms
/iceberg/iceberg table engine/feature/row policies/combination #658 OK 364ms
/iceberg/iceberg table engine/feature/row policies/combination #659 OK 416ms
/iceberg/iceberg table engine/feature/row policies/combination #660 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #661 OK 449ms
/iceberg/iceberg table engine/feature/row policies/combination #662 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #663 OK 453ms
/iceberg/iceberg table engine/feature/row policies/combination #664 OK 446ms
/iceberg/iceberg table engine/feature/row policies/combination #665 OK 431ms
/iceberg/iceberg table engine/feature/row policies/combination #666 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #667 OK 444ms
/iceberg/iceberg table engine/feature/row policies/combination #668 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #669 OK 406ms
/iceberg/iceberg table engine/feature/row policies/combination #670 OK 380ms
/iceberg/iceberg table engine/feature/row policies/combination #671 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #672 OK 424ms
/iceberg/iceberg table engine/feature/row policies/combination #673 OK 384ms
/iceberg/iceberg table engine/feature/row policies/combination #674 OK 422ms
/iceberg/iceberg table engine/feature/row policies/combination #675 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #676 OK 413ms
/iceberg/iceberg table engine/feature/row policies/combination #677 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #678 OK 435ms
/iceberg/iceberg table engine/feature/row policies/combination #679 OK 442ms
/iceberg/iceberg table engine/feature/row policies/combination #680 OK 367ms
/iceberg/iceberg table engine/feature/row policies/combination #681 OK 378ms
/iceberg/iceberg table engine/feature/row policies/combination #682 OK 458ms
/iceberg/iceberg table engine/feature/row policies/combination #683 OK 460ms
/iceberg/iceberg table engine/feature/row policies/combination #684 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #685 OK 485ms
/iceberg/iceberg table engine/feature/row policies/combination #686 OK 450ms
/iceberg/iceberg table engine/feature/row policies/combination #687 OK 426ms
/iceberg/iceberg table engine/feature/row policies/combination #688 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #689 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #690 OK 448ms
/iceberg/iceberg table engine/feature/row policies/combination #691 OK 414ms
/iceberg/iceberg table engine/feature/row policies/combination #692 OK 388ms
/iceberg/iceberg table engine/feature/row policies/combination #693 OK 372ms
/iceberg/iceberg table engine/feature/row policies/combination #694 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #695 OK 456ms
/iceberg/iceberg table engine/feature/row policies/combination #696 OK 416ms
/iceberg/iceberg table engine/feature/row policies/combination #697 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #698 OK 365ms
/iceberg/iceberg table engine/feature/row policies/combination #699 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #700 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #701 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #702 OK 366ms
/iceberg/iceberg table engine/feature/row policies/combination #703 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #704 OK 426ms
/iceberg/iceberg table engine/feature/row policies/combination #705 OK 407ms
/iceberg/iceberg table engine/feature/row policies/combination #706 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #707 OK 416ms
/iceberg/iceberg table engine/feature/row policies/combination #708 OK 366ms
/iceberg/iceberg table engine/feature/row policies/combination #709 OK 431ms
/iceberg/iceberg table engine/feature/row policies/combination #710 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #711 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #712 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #713 OK 392ms
/iceberg/iceberg table engine/feature/row policies/combination #714 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #715 OK 368ms
/iceberg/iceberg table engine/feature/row policies/combination #716 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #717 OK 415ms
/iceberg/iceberg table engine/feature/row policies/combination #718 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #719 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #720 OK 396ms
/iceberg/iceberg table engine/feature/row policies/combination #721 OK 469ms
/iceberg/iceberg table engine/feature/row policies/combination #722 OK 462ms
/iceberg/iceberg table engine/feature/row policies/combination #723 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #724 OK 367ms
/iceberg/iceberg table engine/feature/row policies/combination #725 OK 442ms
/iceberg/iceberg table engine/feature/row policies/combination #726 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #727 OK 403ms
/iceberg/iceberg table engine/feature/row policies/combination #728 OK 453ms
/iceberg/iceberg table engine/feature/row policies/combination #729 OK 424ms
/iceberg/iceberg table engine/feature/row policies/combination #730 OK 416ms
/iceberg/iceberg table engine/feature/row policies/combination #731 OK 382ms
/iceberg/iceberg table engine/feature/row policies/combination #732 OK 440ms
/iceberg/iceberg table engine/feature/row policies/combination #733 OK 451ms
/iceberg/iceberg table engine/feature/row policies/combination #734 OK 419ms
/iceberg/iceberg table engine/feature/row policies/combination #735 OK 405ms
/iceberg/iceberg table engine/feature/row policies/combination #736 OK 437ms
/iceberg/iceberg table engine/feature/row policies/combination #737 OK 407ms
/iceberg/iceberg table engine/feature/row policies/combination #738 OK 456ms
/iceberg/iceberg table engine/feature/row policies/combination #739 OK 453ms
/iceberg/iceberg table engine/feature/row policies/combination #740 OK 432ms
/iceberg/iceberg table engine/feature/row policies/combination #741 OK 399ms
/iceberg/iceberg table engine/feature/row policies/combination #742 OK 364ms
/iceberg/iceberg table engine/feature/row policies/combination #743 OK 439ms
/iceberg/iceberg table engine/feature/row policies/combination #744 OK 396ms
/iceberg/iceberg table engine/feature/row policies/combination #745 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #746 OK 409ms
/iceberg/iceberg table engine/feature/row policies/combination #747 OK 369ms
/iceberg/iceberg table engine/feature/row policies/combination #748 OK 377ms
/iceberg/iceberg table engine/feature/row policies/combination #749 OK 448ms
/iceberg/iceberg table engine/feature/row policies/combination #750 OK 432ms
/iceberg/iceberg table engine/feature/row policies/combination #751 OK 403ms
/iceberg/iceberg table engine/feature/row policies/combination #752 OK 410ms
/iceberg/iceberg table engine/feature/row policies/combination #753 OK 393ms
/iceberg/iceberg table engine/feature/row policies/combination #754 OK 370ms
/iceberg/iceberg table engine/feature/row policies/combination #755 OK 429ms
/iceberg/iceberg table engine/feature/row policies/combination #756 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #757 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #758 OK 370ms
/iceberg/iceberg table engine/feature/row policies/combination #759 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #760 OK 464ms
/iceberg/iceberg table engine/feature/row policies/combination #761 OK 453ms
/iceberg/iceberg table engine/feature/row policies/combination #762 OK 368ms
/iceberg/iceberg table engine/feature/row policies/combination #763 OK 369ms
/iceberg/iceberg table engine/feature/row policies/combination #764 OK 399ms
/iceberg/iceberg table engine/feature/row policies/combination #765 OK 434ms
/iceberg/iceberg table engine/feature/row policies/combination #766 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #767 OK 382ms
/iceberg/iceberg table engine/feature/row policies/combination #768 OK 394ms
/iceberg/iceberg table engine/feature/row policies/combination #769 OK 442ms
/iceberg/iceberg table engine/feature/row policies/combination #770 OK 450ms
/iceberg/iceberg table engine/feature/row policies/combination #771 OK 381ms
/iceberg/iceberg table engine/feature/row policies/combination #772 OK 423ms
/iceberg/iceberg table engine/feature/row policies/combination #773 OK 424ms
/iceberg/iceberg table engine/feature/row policies/combination #774 OK 410ms
/iceberg/iceberg table engine/feature/row policies/combination #775 OK 437ms
/iceberg/iceberg table engine/feature/row policies/combination #776 OK 422ms
/iceberg/iceberg table engine/feature/row policies/combination #777 OK 364ms
/iceberg/iceberg table engine/feature/row policies/combination #778 OK 406ms
/iceberg/iceberg table engine/feature/row policies/combination #779 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #780 OK 414ms
/iceberg/iceberg table engine/feature/row policies/combination #781 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #782 OK 412ms
/iceberg/iceberg table engine/feature/row policies/combination #783 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #784 OK 430ms
/iceberg/iceberg table engine/feature/row policies/combination #785 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #786 OK 431ms
/iceberg/iceberg table engine/feature/row policies/combination #787 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #788 OK 398ms
/iceberg/iceberg table engine/feature/row policies/combination #789 OK 412ms
/iceberg/iceberg table engine/feature/row policies/combination #790 OK 421ms
/iceberg/iceberg table engine/feature/row policies/combination #791 OK 418ms
/iceberg/iceberg table engine/feature/row policies/combination #792 OK 420ms
/iceberg/iceberg table engine/feature/row policies/combination #793 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #794 OK 402ms
/iceberg/iceberg table engine/feature/row policies/combination #795 OK 377ms
/iceberg/iceberg table engine/feature/row policies/combination #796 OK 366ms
/iceberg/iceberg table engine/feature/row policies/combination #797 OK 431ms
/iceberg/iceberg table engine/feature/row policies/combination #798 OK 379ms
/iceberg/iceberg table engine/feature/row policies/combination #799 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #800 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #801 OK 406ms
/iceberg/iceberg table engine/feature/row policies/combination #802 OK 442ms
/iceberg/iceberg table engine/feature/row policies/combination #803 OK 405ms
/iceberg/iceberg table engine/feature/row policies/combination #804 OK 451ms
/iceberg/iceberg table engine/feature/row policies/combination #805 OK 435ms
/iceberg/iceberg table engine/feature/row policies/combination #806 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #807 OK 444ms
/iceberg/iceberg table engine/feature/row policies/combination #808 OK 373ms
/iceberg/iceberg table engine/feature/row policies/combination #809 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #810 OK 398ms
/iceberg/iceberg table engine/feature/row policies/combination #811 OK 402ms
/iceberg/iceberg table engine/feature/row policies/combination #812 OK 450ms
/iceberg/iceberg table engine/feature/row policies/combination #813 OK 378ms
/iceberg/iceberg table engine/feature/row policies/combination #814 OK 446ms
/iceberg/iceberg table engine/feature/row policies/combination #815 OK 414ms
/iceberg/iceberg table engine/feature/row policies/combination #816 OK 452ms
/iceberg/iceberg table engine/feature/row policies/combination #817 OK 382ms
/iceberg/iceberg table engine/feature/row policies/combination #818 OK 442ms
/iceberg/iceberg table engine/feature/row policies/combination #819 OK 450ms
/iceberg/iceberg table engine/feature/row policies/combination #820 OK 372ms
/iceberg/iceberg table engine/feature/row policies/combination #821 OK 453ms
/iceberg/iceberg table engine/feature/row policies/combination #822 OK 381ms
/iceberg/iceberg table engine/feature/row policies/combination #823 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #824 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #825 OK 366ms
/iceberg/iceberg table engine/feature/row policies/combination #826 OK 463ms
/iceberg/iceberg table engine/feature/row policies/combination #827 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #828 OK 409ms
/iceberg/iceberg table engine/feature/row policies/combination #829 OK 370ms
/iceberg/iceberg table engine/feature/row policies/combination #830 OK 454ms
/iceberg/iceberg table engine/feature/row policies/combination #831 OK 402ms
/iceberg/iceberg table engine/feature/row policies/combination #832 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #833 OK 407ms
/iceberg/iceberg table engine/feature/row policies/combination #834 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #835 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #836 OK 396ms
/iceberg/iceberg table engine/feature/row policies/combination #837 OK 449ms
/iceberg/iceberg table engine/feature/row policies/combination #838 OK 381ms
/iceberg/iceberg table engine/feature/row policies/combination #839 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #840 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #841 OK 423ms
/iceberg/iceberg table engine/feature/row policies/combination #842 OK 388ms
/iceberg/iceberg table engine/feature/row policies/combination #843 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #844 OK 466ms
/iceberg/iceberg table engine/feature/row policies/combination #845 OK 444ms
/iceberg/iceberg table engine/feature/row policies/combination #846 OK 439ms
/iceberg/iceberg table engine/feature/row policies/combination #847 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #848 OK 370ms
/iceberg/iceberg table engine/feature/row policies/combination #849 OK 458ms
/iceberg/iceberg table engine/feature/row policies/combination #850 OK 399ms
/iceberg/iceberg table engine/feature/row policies/combination #851 OK 406ms
/iceberg/iceberg table engine/feature/row policies/combination #852 OK 390ms
/iceberg/iceberg table engine/feature/row policies/combination #853 OK 457ms
/iceberg/iceberg table engine/feature/row policies/combination #854 OK 446ms
/iceberg/iceberg table engine/feature/row policies/combination #855 OK 435ms
/iceberg/iceberg table engine/feature/row policies/combination #856 OK 430ms
/iceberg/iceberg table engine/feature/row policies/combination #857 OK 449ms
/iceberg/iceberg table engine/feature/row policies/combination #858 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #859 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #860 OK 407ms
/iceberg/iceberg table engine/feature/row policies/combination #861 OK 399ms
/iceberg/iceberg table engine/feature/row policies/combination #862 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #863 OK 402ms
/iceberg/iceberg table engine/feature/row policies/combination #864 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #865 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #866 OK 405ms
/iceberg/iceberg table engine/feature/row policies/combination #867 OK 485ms
/iceberg/iceberg table engine/feature/row policies/combination #868 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #869 OK 422ms
/iceberg/iceberg table engine/feature/row policies/combination #870 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #871 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #872 OK 374ms
/iceberg/iceberg table engine/feature/row policies/combination #873 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #874 OK 401ms
/iceberg/iceberg table engine/feature/row policies/combination #875 OK 410ms
/iceberg/iceberg table engine/feature/row policies/combination #876 OK 405ms
/iceberg/iceberg table engine/feature/row policies/combination #877 OK 457ms
/iceberg/iceberg table engine/feature/row policies/combination #878 OK 384ms
/iceberg/iceberg table engine/feature/row policies/combination #879 OK 398ms
/iceberg/iceberg table engine/feature/row policies/combination #880 OK 367ms
/iceberg/iceberg table engine/feature/row policies/combination #881 OK 417ms
/iceberg/iceberg table engine/feature/row policies/combination #882 OK 430ms
/iceberg/iceberg table engine/feature/row policies/combination #883 OK 414ms
/iceberg/iceberg table engine/feature/row policies/combination #884 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #885 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #886 OK 442ms
/iceberg/iceberg table engine/feature/row policies/combination #887 OK 372ms
/iceberg/iceberg table engine/feature/row policies/combination #888 OK 398ms
/iceberg/iceberg table engine/feature/row policies/combination #889 OK 362ms
/iceberg/iceberg table engine/feature/row policies/combination #890 OK 455ms
/iceberg/iceberg table engine/feature/row policies/combination #891 OK 372ms
/iceberg/iceberg table engine/feature/row policies/combination #892 OK 431ms
/iceberg/iceberg table engine/feature/row policies/combination #893 OK 394ms
/iceberg/iceberg table engine/feature/row policies/combination #894 OK 378ms
/iceberg/iceberg table engine/feature/row policies/combination #895 OK 453ms
/iceberg/iceberg table engine/feature/row policies/combination #896 OK 431ms
/iceberg/iceberg table engine/feature/row policies/combination #897 OK 435ms
/iceberg/iceberg table engine/feature/row policies/combination #898 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #899 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #900 OK 419ms
/iceberg/iceberg table engine/feature/row policies/combination #901 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #902 OK 397ms
/iceberg/iceberg table engine/feature/row policies/combination #903 OK 418ms
/iceberg/iceberg table engine/feature/row policies/combination #904 OK 393ms
/iceberg/iceberg table engine/feature/row policies/combination #905 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #906 OK 396ms
/iceberg/iceberg table engine/feature/row policies/combination #907 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #908 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #909 OK 375ms
/iceberg/iceberg table engine/feature/row policies/combination #910 OK 433ms
/iceberg/iceberg table engine/feature/row policies/combination #911 OK 384ms
/iceberg/iceberg table engine/feature/row policies/combination #912 OK 450ms
/iceberg/iceberg table engine/feature/row policies/combination #913 OK 368ms
/iceberg/iceberg table engine/feature/row policies/combination #914 OK 407ms
/iceberg/iceberg table engine/feature/row policies/combination #915 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #916 OK 447ms
/iceberg/iceberg table engine/feature/row policies/combination #917 OK 450ms
/iceberg/iceberg table engine/feature/row policies/combination #918 OK 430ms
/iceberg/iceberg table engine/feature/row policies/combination #919 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #920 OK 362ms
/iceberg/iceberg table engine/feature/row policies/combination #921 OK 459ms
/iceberg/iceberg table engine/feature/row policies/combination #922 OK 412ms
/iceberg/iceberg table engine/feature/row policies/combination #923 OK 437ms
/iceberg/iceberg table engine/feature/row policies/combination #924 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #925 OK 443ms
/iceberg/iceberg table engine/feature/row policies/combination #926 OK 429ms
/iceberg/iceberg table engine/feature/row policies/combination #927 OK 442ms
/iceberg/iceberg table engine/feature/row policies/combination #928 OK 390ms
/iceberg/iceberg table engine/feature/row policies/combination #929 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #930 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #931 OK 436ms
/iceberg/iceberg table engine/feature/row policies/combination #932 OK 444ms
/iceberg/iceberg table engine/feature/row policies/combination #933 OK 377ms
/iceberg/iceberg table engine/feature/row policies/combination #934 OK 383ms
/iceberg/iceberg table engine/feature/row policies/combination #935 OK 446ms
/iceberg/iceberg table engine/feature/row policies/combination #936 OK 398ms
/iceberg/iceberg table engine/feature/row policies/combination #937 OK 449ms
/iceberg/iceberg table engine/feature/row policies/combination #938 OK 383ms
/iceberg/iceberg table engine/feature/row policies/combination #939 OK 462ms
/iceberg/iceberg table engine/feature/row policies/combination #940 OK 446ms
/iceberg/iceberg table engine/feature/row policies/combination #941 OK 409ms
/iceberg/iceberg table engine/feature/row policies/combination #942 OK 440ms
/iceberg/iceberg table engine/feature/row policies/combination #943 OK 403ms
/iceberg/iceberg table engine/feature/row policies/combination #944 OK 362ms
/iceberg/iceberg table engine/feature/row policies/combination #945 OK 453ms
/iceberg/iceberg table engine/feature/row policies/combination #946 OK 476ms
/iceberg/iceberg table engine/feature/row policies/combination #947 OK 378ms
/iceberg/iceberg table engine/feature/row policies/combination #948 OK 404ms
/iceberg/iceberg table engine/feature/row policies/combination #949 OK 371ms
/iceberg/iceberg table engine/feature/row policies/combination #950 OK 405ms
/iceberg/iceberg table engine/feature/row policies/combination #951 OK 442ms
/iceberg/iceberg table engine/feature/row policies/combination #952 OK 372ms
/iceberg/iceberg table engine/feature/row policies/combination #953 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #954 OK 461ms
/iceberg/iceberg table engine/feature/row policies/combination #955 OK 373ms
/iceberg/iceberg table engine/feature/row policies/combination #956 OK 380ms
/iceberg/iceberg table engine/feature/row policies/combination #957 OK 381ms
/iceberg/iceberg table engine/feature/row policies/combination #958 OK 399ms
/iceberg/iceberg table engine/feature/row policies/combination #959 OK 429ms
/iceberg/iceberg table engine/feature/row policies/combination #960 OK 413ms
/iceberg/iceberg table engine/feature/row policies/combination #961 OK 417ms
/iceberg/iceberg table engine/feature/row policies/combination #962 OK 432ms
/iceberg/iceberg table engine/feature/row policies/combination #963 OK 441ms
/iceberg/iceberg table engine/feature/row policies/combination #964 OK 389ms
/iceberg/iceberg table engine/feature/row policies/combination #965 OK 377ms
/iceberg/iceberg table engine/feature/row policies/combination #966 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #967 OK 377ms
/iceberg/iceberg table engine/feature/row policies/combination #968 OK 462ms
/iceberg/iceberg table engine/feature/row policies/combination #969 OK 466ms
/iceberg/iceberg table engine/feature/row policies/combination #970 OK 449ms
/iceberg/iceberg table engine/feature/row policies/combination #971 OK 427ms
/iceberg/iceberg table engine/feature/row policies/combination #972 OK 372ms
/iceberg/iceberg table engine/feature/row policies/combination #973 OK 421ms
/iceberg/iceberg table engine/feature/row policies/combination #974 OK 437ms
/iceberg/iceberg table engine/feature/row policies/combination #975 OK 435ms
/iceberg/iceberg table engine/feature/row policies/combination #976 OK 418ms
/iceberg/iceberg table engine/feature/row policies/combination #977 OK 411ms
/iceberg/iceberg table engine/feature/row policies/combination #978 OK 385ms
/iceberg/iceberg table engine/feature/row policies/combination #979 OK 417ms
/iceberg/iceberg table engine/feature/row policies/combination #980 OK 455ms
/iceberg/iceberg table engine/feature/row policies/combination #981 OK 469ms
/iceberg/iceberg table engine/feature/row policies/combination #982 OK 455ms
/iceberg/iceberg table engine/feature/row policies/combination #983 OK 444ms
/iceberg/iceberg table engine/feature/row policies/combination #984 OK 422ms
/iceberg/iceberg table engine/feature/row policies/combination #985 OK 438ms
/iceberg/iceberg table engine/feature/row policies/combination #986 OK 417ms
/iceberg/iceberg table engine/feature/row policies/combination #987 OK 442ms
/iceberg/iceberg table engine/feature/row policies/combination #988 OK 471ms
/iceberg/iceberg table engine/feature/row policies/combination #989 OK 403ms
/iceberg/iceberg table engine/feature/row policies/combination #990 OK 386ms
/iceberg/iceberg table engine/feature/row policies/combination #991 OK 445ms
/iceberg/iceberg table engine/feature/row policies/combination #992 OK 381ms
/iceberg/iceberg table engine/feature/row policies/combination #993 OK 376ms
/iceberg/iceberg table engine/feature/row policies/combination #994 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #995 OK 408ms
/iceberg/iceberg table engine/feature/row policies/combination #996 OK 418ms
/iceberg/iceberg table engine/feature/row policies/combination #997 OK 462ms
/iceberg/iceberg table engine/feature/row policies/combination #998 OK 416ms
/iceberg/iceberg table engine/feature/row policies/combination #999 OK 417ms
/iceberg/iceberg table engine/column rbac OK 4m 37s
/iceberg/iceberg table engine/column rbac/combination #0 OK 2s 659ms
/iceberg/iceberg table engine/column rbac/combination #1 OK 2s 797ms
/iceberg/iceberg table engine/column rbac/combination #2 OK 2s 606ms
/iceberg/iceberg table engine/column rbac/combination #3 OK 2s 741ms
/iceberg/iceberg table engine/column rbac/combination #4 OK 2s 726ms
/iceberg/iceberg table engine/column rbac/combination #5 OK 2s 638ms
/iceberg/iceberg table engine/column rbac/combination #6 OK 2s 771ms
/iceberg/iceberg table engine/column rbac/combination #7 OK 2s 683ms
/iceberg/iceberg table engine/column rbac/combination #8 OK 2s 698ms
/iceberg/iceberg table engine/column rbac/combination #9 OK 3s 32ms
/iceberg/iceberg table engine/column rbac/combination #10 OK 2s 818ms
/iceberg/iceberg table engine/column rbac/combination #11 OK 2s 710ms
/iceberg/iceberg table engine/column rbac/combination #12 OK 2s 637ms
/iceberg/iceberg table engine/column rbac/combination #13 OK 2s 710ms
/iceberg/iceberg table engine/column rbac/combination #14 OK 2s 662ms
/iceberg/iceberg table engine/column rbac/combination #15 OK 3s 316ms
/iceberg/iceberg table engine/column rbac/combination #16 OK 2s 990ms
/iceberg/iceberg table engine/column rbac/combination #17 OK 2s 785ms
/iceberg/iceberg table engine/column rbac/combination #18 OK 2s 638ms
/iceberg/iceberg table engine/column rbac/combination #19 OK 2s 652ms
/iceberg/iceberg table engine/column rbac/combination #20 OK 2s 766ms
/iceberg/iceberg table engine/column rbac/combination #21 OK 2s 675ms
/iceberg/iceberg table engine/column rbac/combination #22 OK 2s 730ms
/iceberg/iceberg table engine/column rbac/combination #23 OK 2s 614ms
/iceberg/iceberg table engine/column rbac/combination #24 OK 2s 814ms
/iceberg/iceberg table engine/column rbac/combination #25 OK 2s 629ms
/iceberg/iceberg table engine/column rbac/combination #26 OK 2s 717ms
/iceberg/iceberg table engine/column rbac/combination #27 OK 2s 666ms
/iceberg/iceberg table engine/column rbac/combination #28 OK 2s 739ms
/iceberg/iceberg table engine/column rbac/combination #29 OK 2s 859ms
/iceberg/iceberg table engine/column rbac/combination #30 OK 2s 702ms
/iceberg/iceberg table engine/column rbac/combination #31 OK 2s 723ms
/iceberg/iceberg table engine/column rbac/combination #32 OK 2s 632ms
/iceberg/iceberg table engine/column rbac/combination #33 OK 2s 851ms
/iceberg/iceberg table engine/column rbac/combination #34 OK 2s 726ms
/iceberg/iceberg table engine/column rbac/combination #35 OK 2s 637ms
/iceberg/iceberg table engine/column rbac/combination #36 OK 2s 616ms
/iceberg/iceberg table engine/column rbac/combination #37 OK 2s 715ms
/iceberg/iceberg table engine/column rbac/combination #38 OK 2s 624ms
/iceberg/iceberg table engine/column rbac/combination #39 OK 2s 623ms
/iceberg/iceberg table engine/column rbac/combination #40 OK 2s 769ms
/iceberg/iceberg table engine/column rbac/combination #41 OK 2s 652ms
/iceberg/iceberg table engine/column rbac/combination #42 OK 3s 37ms
/iceberg/iceberg table engine/column rbac/combination #43 OK 2s 783ms
/iceberg/iceberg table engine/column rbac/combination #44 OK 2s 643ms
/iceberg/iceberg table engine/column rbac/combination #45 OK 2s 918ms
/iceberg/iceberg table engine/column rbac/combination #46 OK 2s 619ms
/iceberg/iceberg table engine/column rbac/combination #47 OK 2s 830ms
/iceberg/iceberg table engine/column rbac/combination #48 OK 2s 598ms
/iceberg/iceberg table engine/column rbac/combination #49 OK 2s 692ms
/iceberg/iceberg table engine/column rbac/combination #50 OK 2s 636ms
/iceberg/iceberg table engine/column rbac/combination #51 OK 2s 956ms
/iceberg/iceberg table engine/column rbac/combination #52 OK 2s 643ms
/iceberg/iceberg table engine/column rbac/combination #53 OK 2s 791ms
/iceberg/iceberg table engine/column rbac/combination #54 OK 2s 599ms
/iceberg/iceberg table engine/column rbac/combination #55 OK 2s 617ms
/iceberg/iceberg table engine/column rbac/combination #56 OK 2s 631ms
/iceberg/iceberg table engine/column rbac/combination #57 OK 2s 797ms
/iceberg/iceberg table engine/column rbac/combination #58 OK 2s 826ms
/iceberg/iceberg table engine/column rbac/combination #59 OK 2s 699ms
/iceberg/iceberg table engine/column rbac/combination #60 OK 2s 930ms
/iceberg/iceberg table engine/column rbac/combination #61 OK 2s 692ms
/iceberg/iceberg table engine/column rbac/combination #62 OK 2s 603ms
/iceberg/iceberg table engine/column rbac/combination #63 OK 2s 695ms
/iceberg/iceberg table engine/column rbac/combination #64 OK 2s 639ms
/iceberg/iceberg table engine/column rbac/combination #65 OK 2s 677ms
/iceberg/iceberg table engine/column rbac/combination #66 OK 2s 624ms
/iceberg/iceberg table engine/column rbac/combination #67 OK 3s 18ms
/iceberg/iceberg table engine/column rbac/combination #68 OK 2s 846ms
/iceberg/iceberg table engine/column rbac/combination #69 OK 2s 636ms
/iceberg/iceberg table engine/column rbac/combination #70 OK 2s 635ms
/iceberg/iceberg table engine/column rbac/combination #71 OK 2s 791ms
/iceberg/iceberg table engine/column rbac/combination #72 OK 2s 747ms
/iceberg/iceberg table engine/column rbac/combination #73 OK 2s 652ms
/iceberg/iceberg table engine/column rbac/combination #74 OK 2s 651ms
/iceberg/iceberg table engine/column rbac/combination #75 OK 2s 729ms
/iceberg/iceberg table engine/column rbac/combination #76 OK 2s 984ms
/iceberg/iceberg table engine/column rbac/combination #77 OK 2s 609ms
/iceberg/iceberg table engine/column rbac/combination #78 OK 3s 320ms
/iceberg/iceberg table engine/column rbac/combination #79 OK 2s 694ms
/iceberg/iceberg table engine/column rbac/combination #80 OK 2s 673ms
/iceberg/iceberg table engine/column rbac/combination #81 OK 2s 721ms
/iceberg/iceberg table engine/column rbac/combination #82 OK 2s 699ms
/iceberg/iceberg table engine/column rbac/combination #83 OK 2s 850ms
/iceberg/iceberg table engine/column rbac/combination #84 OK 2s 714ms
/iceberg/iceberg table engine/column rbac/combination #85 OK 2s 815ms
/iceberg/iceberg table engine/column rbac/combination #86 OK 2s 665ms
/iceberg/iceberg table engine/column rbac/combination #87 OK 2s 873ms
/iceberg/iceberg table engine/column rbac/combination #88 OK 2s 612ms
/iceberg/iceberg table engine/column rbac/combination #89 OK 2s 712ms
/iceberg/iceberg table engine/column rbac/combination #90 OK 2s 843ms
/iceberg/iceberg table engine/column rbac/combination #91 OK 3s 293ms
/iceberg/iceberg table engine/column rbac/combination #92 OK 2s 816ms
/iceberg/iceberg table engine/column rbac/combination #93 OK 2s 591ms
/iceberg/iceberg table engine/column rbac/combination #94 OK 2s 682ms
/iceberg/iceberg table engine/column rbac/combination #95 OK 2s 635ms
/iceberg/iceberg table engine/column rbac/combination #96 OK 2s 667ms
/iceberg/iceberg table engine/column rbac/combination #97 OK 3s 313ms
/iceberg/iceberg table engine/column rbac/combination #98 OK 2s 691ms
/iceberg/iceberg table engine/column rbac/combination #99 OK 2s 910ms
/iceberg/iceberg table engine/feature OK 7s 730ms
/iceberg/iceberg table engine/feature/alter column OK 1s 403ms
/iceberg/iceberg table engine/feature/alter comment columns OK 1s 138ms
/iceberg/iceberg table engine/feature/alter partitions OK 2s 106ms
/iceberg/iceberg table engine/feature/alter settings OK 1s 28ms
/iceberg/iceberg table engine/feature/alter delete OK 1s 35ms
/iceberg/iceberg table engine/feature/alter order by OK 1s 17ms
/iceberg/iceberg table engine/feature OK 1s 196ms
/iceberg/iceberg table engine/feature/drop table OK 1s 196ms
/iceberg/iceberg table engine/feature OK 2s 64ms
/iceberg/iceberg table engine/feature/named collections config OK 993ms
/iceberg/iceberg table engine/feature/named collections OK 1s 69ms
/iceberg/iceberg table engine/write min max pruning OK 1s 79ms
/iceberg/iceberg table engine/write min max pruning/write min max pruning OK 1s 79ms
/iceberg/iceberg table engine/system tables partition sorting keys OK 1s 344ms
/iceberg/iceberg table engine/system tables partition sorting keys/system tables partition sorting keys OK 1s 343ms
/iceberg/export partition OK 18m 33s
/iceberg/export partition/no catalog OK 2m 58s
/iceberg/export partition/no catalog/sanity OK 4s 965ms
/iceberg/export partition/no catalog/sanity/export single partition OK 883ms
/iceberg/export partition/no catalog/sanity/export all partitions OK 1s 357ms
/iceberg/export partition/no catalog/sanity/export multiple partitions in one ALTER OK 799ms
/iceberg/export partition/no catalog/sanity/export empty partition OK 1s 9ms
/iceberg/export partition/no catalog/sanity/export across replicas OK 913ms
/iceberg/export partition/no catalog/partition compatibility OK 9s 197ms
/iceberg/export partition/no catalog/partition compatibility/accepted OK 4s 806ms
/iceberg/export partition/no catalog/partition compatibility/accepted/accepted﹕ compound identity (year, region) OK 614ms
/iceberg/export partition/no catalog/partition compatibility/accepted/accepted﹕ year transform (toYearNumSinceEpoch) OK 620ms
/iceberg/export partition/no catalog/partition compatibility/accepted/accepted﹕ month transform (toMonthNumSinceEpoch) OK 602ms
/iceberg/export partition/no catalog/partition compatibility/accepted/accepted﹕ day transform (toRelativeDayNum) OK 606ms
/iceberg/export partition/no catalog/partition compatibility/accepted/accepted﹕ hour transform (toRelativeHourNum) OK 550ms
/iceberg/export partition/no catalog/partition compatibility/accepted/accepted﹕ truncate[4] on String OK 613ms
/iceberg/export partition/no catalog/partition compatibility/accepted/accepted﹕ bucket[8] on Int64 OK 594ms
/iceberg/export partition/no catalog/partition compatibility/accepted/accepted﹕ compound mixed (year + bucket[16]) OK 602ms
/iceberg/export partition/no catalog/partition compatibility/rejected OK 4s 390ms
/iceberg/export partition/no catalog/partition compatibility/rejected/rejected﹕ compound field order reversed OK 559ms
/iceberg/export partition/no catalog/partition compatibility/rejected/rejected﹕ transform vs identity on same column OK 534ms
/iceberg/export partition/no catalog/partition compatibility/rejected/rejected﹕ bucket width mismatch ([8] vs [16]) OK 540ms
/iceberg/export partition/no catalog/partition compatibility/rejected/rejected﹕ truncate width mismatch ([4] vs [8]) OK 554ms
/iceberg/export partition/no catalog/partition compatibility/rejected/rejected﹕ field-count mismatch (2 vs 1) OK 551ms
/iceberg/export partition/no catalog/partition compatibility/rejected/rejected﹕ unsupported MergeTree expression (intDiv) OK 572ms
/iceberg/export partition/no catalog/partition compatibility/rejected/rejected﹕ different partition columns (year vs id) OK 543ms
/iceberg/export partition/no catalog/partition compatibility/rejected/rejected﹕ partitioned source, unpartitioned destination OK 532ms
/iceberg/export partition/no catalog/datatypes OK 15s 514ms
/iceberg/export partition/no catalog/datatypes/accepted OK 12s 878ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ Int16 OK 751ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ Int32 OK 769ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ Int64 OK 678ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ UInt32 OK 754ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ Float32 OK 690ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ Float64 OK 707ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ Date OK 756ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ Date32 OK 709ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ DateTime OK 693ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ DateTime64(3) OK 681ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ String OK 691ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ UUID OK 698ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ Nullable(Int64) with explicit NULLs OK 695ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ Nullable(String) with explicit NULLs OK 701ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ Array(Int32) OK 709ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ Array(String) OK 712ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ Map(String, Int64) OK 761ms
/iceberg/export partition/no catalog/datatypes/accepted/accepted﹕ Tuple(Int32, String) -> struct OK 713ms
/iceberg/export partition/no catalog/datatypes/rejected OK 2s 635ms
/iceberg/export partition/no catalog/datatypes/rejected/rejected﹕ Int8 OK 385ms
/iceberg/export partition/no catalog/datatypes/rejected/rejected﹕ UInt8 OK 413ms
/iceberg/export partition/no catalog/datatypes/rejected/rejected﹕ Bool OK 431ms
/iceberg/export partition/no catalog/datatypes/rejected/rejected﹕ FixedString(16) OK 363ms
/iceberg/export partition/no catalog/datatypes/rejected/rejected﹕ Decimal(10, 2) OK 394ms
/iceberg/export partition/no catalog/datatypes/rejected/rejected﹕ Enum8 OK 327ms
/iceberg/export partition/no catalog/datatypes/rejected/rejected﹕ LowCardinality(String) OK 318ms
/iceberg/export partition/no catalog/manifest integrity OK 3s 827ms
/iceberg/export partition/no catalog/manifest integrity/each export advances the snapshot list by one OK 762ms
/iceberg/export partition/no catalog/manifest integrity/snapshot summary total-records matches exported row count OK 474ms
/iceberg/export partition/no catalog/manifest integrity/partition spec references source columns OK 518ms
/iceberg/export partition/no catalog/manifest integrity/data files have all required column stats OK 460ms
/iceberg/export partition/no catalog/manifest integrity/value_counts across data files sum to source row count XFail 653ms
/iceberg/export partition/no catalog/manifest integrity/data file paths live under the table prefix OK 473ms
/iceberg/export partition/no catalog/manifest integrity/external iceberg reader round-trips exported data XFail 482ms
/iceberg/export partition/no catalog/catalogs OK 1s 228ms
/iceberg/export partition/no catalog/catalogs/no_catalog﹕ icebergS3 table function reads the committed export OK 535ms
/iceberg/export partition/no catalog/catalogs/no_catalog﹕ dropping the destination table keeps the committed data OK 692ms
/iceberg/export partition/no catalog/transactions OK 1m 19s
/iceberg/export partition/no catalog/transactions/sequential exports append one append-snapshot each OK 685ms
/iceberg/export partition/no catalog/transactions/duplicate export within TTL is rejected OK 624ms
/iceberg/export partition/no catalog/transactions/force_export overrides the idempotency gate OK 634ms
/iceberg/export partition/no catalog/transactions/TTL expiry permits re-export of the same partition OK 6s 608ms
/iceberg/export partition/no catalog/transactions/commit survives pre-publish failure (non-retry cleanup) OK 31s 434ms
/iceberg/export partition/no catalog/transactions/commit durable across post-publish exception OK 862ms
/iceberg/export partition/no catalog/transactions/commit idempotent after post-commit pre-status crash window OK 31s 519ms
/iceberg/export partition/no catalog/transactions/manifest status transition failure is retried without duplicate commit OK 7s 5ms
/iceberg/export partition/no catalog/concurrent writes OK 2s 762ms
/iceberg/export partition/no catalog/concurrent writes/multi-statement ALTER commits each partition as its own snapshot OK 1s 160ms
/iceberg/export partition/no catalog/concurrent writes/duplicate EXPORT inside one ALTER commits at most once OK 559ms
/iceberg/export partition/no catalog/concurrent writes/INSERT after a scheduled EXPORT does not leak into the snapshot OK 1s 41ms
/iceberg/export partition/no catalog/schema evolution OK 4s 670ms
/iceberg/export partition/no catalog/schema evolution/add column between exports OK 1s 42ms
/iceberg/export partition/no catalog/schema evolution/drop column between exports OK 964ms
/iceberg/export partition/no catalog/schema evolution/modify column widen Int32 -> Int64 OK 944ms
/iceberg/export partition/no catalog/schema evolution/rename column between exports OK 958ms
/iceberg/export partition/no catalog/schema evolution/source-only schema drift is rejected at EXPORT OK 553ms
/iceberg/export partition/no catalog/schema evolution/iceberg schema history grows after ADD COLUMN OK 205ms
/iceberg/export partition/no catalog/partition spec evolution OK 3s 170ms
/iceberg/export partition/no catalog/partition spec evolution/single spec for multiple partition exports OK 1s 87ms
/iceberg/export partition/no catalog/partition spec evolution/partition tuple matches partition_id across exports OK 1s 24ms
/iceberg/export partition/no catalog/partition spec evolution/multi-column partition spec is preserved OK 1s 57ms
/iceberg/export partition/no catalog/storage paths OK 3s 102ms
/iceberg/export partition/no catalog/storage paths/full path﹕ metadata․json location is an absolute s3﹕∕∕ URI OK 507ms
/iceberg/export partition/no catalog/storage paths/default﹕ metadata․json location is bucket-relative (no FS scheme) OK 505ms
/iceberg/export partition/no catalog/storage paths/deep prefix hierarchy round-trips cleanly OK 707ms
/iceberg/export partition/no catalog/storage paths/multiple destinations share a bucket but stay isolated OK 1s 380ms
/iceberg/export partition/no catalog/disaster recovery OK 22s 648ms
/iceberg/export partition/no catalog/disaster recovery/STOP MOVES holds the export PENDING, START MOVES resumes it OK 11s 995ms
/iceberg/export partition/no catalog/disaster recovery/KILL EXPORT PARTITION while moves are stopped transitions to KILLED OK 5s 842ms
/iceberg/export partition/no catalog/disaster recovery/KILL EXPORT PARTITION during commit transitions to KILLED OK 853ms
/iceberg/export partition/no catalog/disaster recovery/EXPORT to a missing destination is rejected synchronously OK 438ms
/iceberg/export partition/no catalog/disaster recovery/EXPORT of a non-existent partition id is a safe no-op OK 3s 516ms
/iceberg/export partition/no catalog/multi replica recovery Skip 635us
/iceberg/export partition/no catalog/replicas Skip 580us
/iceberg/export partition/no catalog/system monitoring OK 4s 74ms
/iceberg/export partition/no catalog/system monitoring/every system․replicated_partition_exports column is populated on success OK 672ms
/iceberg/export partition/no catalog/system monitoring/system․part_log records one ExportPart per exported part OK 861ms
/iceberg/export partition/no catalog/system monitoring/PartsExports and ExportPartitionZooKeeper* profile events increment OK 770ms
/iceberg/export partition/no catalog/system monitoring/KILL EXPORT preserves source_replica and create_time OK 860ms
/iceberg/export partition/no catalog/system monitoring/KILL EXPORT during commit preserves provenance and diagnostic fields OK 908ms
/iceberg/export partition/no catalog/settings OK 806ms
/iceberg/export partition/no catalog/settings/output_format_parquet_compression_method flows to data files XFail 805ms
/iceberg/export partition/no catalog/direct writes OK 2s 229ms
/iceberg/export partition/no catalog/direct writes/insert after export OK 721ms
/iceberg/export partition/no catalog/direct writes/alternating export and insert OK 1s 507ms
/iceberg/export partition/no catalog/truncate OK 2s 853ms
/iceberg/export partition/no catalog/truncate/truncate after export OK 970ms
/iceberg/export partition/no catalog/truncate/export after truncate repopulates destination OK 1s 76ms
/iceberg/export partition/no catalog/truncate/truncate after insert OK 805ms
/iceberg/export partition/no catalog/minmax pruning OK 2s 834ms
/iceberg/export partition/no catalog/minmax pruning/minmax pruning on exported data OK 1s 524ms
/iceberg/export partition/no catalog/minmax pruning/minmax pruning on range predicate OK 1s 309ms
/iceberg/export partition/no catalog/zk compat OK 15s 629ms
/iceberg/export partition/no catalog/zk compat/export after restart recreates missing exports znode OK 3s 706ms
/iceberg/export partition/no catalog/zk compat/restart heals operator-deleted exports znode mid-session OK 11s 922ms
/iceberg/export partition/ice catalog OK 8m 26s
/iceberg/export partition/ice catalog/sanity OK 26s 467ms
/iceberg/export partition/ice catalog/sanity/export single partition OK 3s 912ms
/iceberg/export partition/ice catalog/sanity/export all partitions OK 10s 569ms
/iceberg/export partition/ice catalog/sanity/export multiple partitions in one ALTER OK 3s 860ms
/iceberg/export partition/ice catalog/sanity/export empty partition OK 4s 109ms
/iceberg/export partition/ice catalog/sanity/export across replicas OK 4s 13ms
/iceberg/export partition/ice catalog/partition compatibility Skip 506us
/iceberg/export partition/ice catalog/datatypes Skip 638us
/iceberg/export partition/ice catalog/manifest integrity OK 28s 842ms
/iceberg/export partition/ice catalog/manifest integrity/each export advances the snapshot list by one OK 6s 928ms
/iceberg/export partition/ice catalog/manifest integrity/snapshot summary total-records matches exported row count OK 3s 624ms
/iceberg/export partition/ice catalog/manifest integrity/partition spec references source columns OK 3s 686ms
/iceberg/export partition/ice catalog/manifest integrity/data files have all required column stats OK 3s 616ms
/iceberg/export partition/ice catalog/manifest integrity/value_counts across data files sum to source row count XFail 3s 704ms
/iceberg/export partition/ice catalog/manifest integrity/data file paths live under the table prefix OK 3s 636ms
/iceberg/export partition/ice catalog/manifest integrity/external iceberg reader round-trips exported data XFail 3s 644ms
/iceberg/export partition/ice catalog/catalogs OK 7s 292ms
/iceberg/export partition/ice catalog/catalogs/catalog﹕ export appends a snapshot visible through the external catalog OK 3s 675ms
/iceberg/export partition/ice catalog/catalogs/catalog﹕ external reader round-trips exported data XFail 3s 616ms
/iceberg/export partition/ice catalog/transactions OK 1m 44s
/iceberg/export partition/ice catalog/transactions/sequential exports append one append-snapshot each OK 6s 910ms
/iceberg/export partition/ice catalog/transactions/duplicate export within TTL is rejected OK 3s 824ms
/iceberg/export partition/ice catalog/transactions/force_export overrides the idempotency gate OK 6s 810ms
/iceberg/export partition/ice catalog/transactions/TTL expiry permits re-export of the same partition OK 12s 839ms
/iceberg/export partition/ice catalog/transactions/commit survives pre-publish failure (non-retry cleanup) OK 31s 517ms
/iceberg/export partition/ice catalog/transactions/commit durable across post-publish exception OK 4s 61ms
/iceberg/export partition/ice catalog/transactions/commit idempotent after post-commit pre-status crash window OK 31s 603ms
/iceberg/export partition/ice catalog/transactions/manifest status transition failure is retried without duplicate commit OK 7s 53ms
/iceberg/export partition/ice catalog/concurrent writes OK 39s 788ms
/iceberg/export partition/ice catalog/concurrent writes/multi-statement ALTER commits each partition as its own snapshot OK 34s 977ms
/iceberg/export partition/ice catalog/concurrent writes/duplicate EXPORT inside one ALTER commits at most once OK 631ms
/iceberg/export partition/ice catalog/concurrent writes/INSERT after a scheduled EXPORT does not leak into the snapshot OK 4s 178ms
/iceberg/export partition/ice catalog/schema evolution Skip 496us
/iceberg/export partition/ice catalog/partition spec evolution OK 27s 875ms
/iceberg/export partition/ice catalog/partition spec evolution/single spec for multiple partition exports OK 10s 384ms
/iceberg/export partition/ice catalog/partition spec evolution/partition tuple matches partition_id across exports OK 10s 293ms
/iceberg/export partition/ice catalog/partition spec evolution/multi-column partition spec is preserved OK 7s 196ms
/iceberg/export partition/ice catalog/storage paths Skip 509us
/iceberg/export partition/ice catalog/disaster recovery OK 22s 780ms
/iceberg/export partition/ice catalog/disaster recovery/STOP MOVES holds the export PENDING, START MOVES resumes it OK 12s 42ms
/iceberg/export partition/ice catalog/disaster recovery/KILL EXPORT PARTITION while moves are stopped transitions to KILLED OK 5s 887ms
/iceberg/export partition/ice catalog/disaster recovery/KILL EXPORT PARTITION during commit transitions to KILLED OK 896ms
/iceberg/export partition/ice catalog/disaster recovery/EXPORT to a missing destination is rejected synchronously OK 405ms
/iceberg/export partition/ice catalog/disaster recovery/EXPORT of a non-existent partition id is a safe no-op OK 3s 546ms
/iceberg/export partition/ice catalog/multi replica recovery OK 2m 37s
/iceberg/export partition/ice catalog/multi replica recovery/concurrent exports from different replicas on different partitions OK 1s 134ms
/iceberg/export partition/ice catalog/multi replica recovery/concurrent exports of the same partition from different replicas are idempotent OK 1s 12ms
/iceberg/export partition/ice catalog/multi replica recovery/initiator dies mid-commit and peer replica finalizes exactly once OK 13s 279ms
/iceberg/export partition/ice catalog/multi replica recovery/export recovers after a ZooKeeper restart mid-flight OK 33s 669ms
/iceberg/export partition/ice catalog/multi replica recovery/export recovers after a ZooKeeper SIGKILL + docker start OK 33s 505ms
/iceberg/export partition/ice catalog/multi replica recovery/concurrent cross-replica exports survive a ZooKeeper restart OK 34s 324ms
/iceberg/export partition/ice catalog/multi replica recovery/concurrent cross-replica exports survive a ZooKeeper SIGKILL + docker start OK 40s 162ms
/iceberg/export partition/ice catalog/replicas OK 19s 143ms
/iceberg/export partition/ice catalog/replicas/peer replica completes export when initiator has allow_experimental_insert_into_iceberg disabled OK 19s 143ms
/iceberg/export partition/ice catalog/system monitoring OK 13s 845ms
/iceberg/export partition/ice catalog/system monitoring/every system․replicated_partition_exports column is populated on success OK 3s 893ms
/iceberg/export partition/ice catalog/system monitoring/system․part_log records one ExportPart per exported part OK 4s 34ms
/iceberg/export partition/ice catalog/system monitoring/PartsExports and ExportPartitionZooKeeper* profile events increment OK 3s 961ms
/iceberg/export partition/ice catalog/system monitoring/KILL EXPORT preserves source_replica and create_time OK 943ms
/iceberg/export partition/ice catalog/system monitoring/KILL EXPORT during commit preserves provenance and diagnostic fields OK 1s 10ms
/iceberg/export partition/ice catalog/settings OK 7s 63ms
/iceberg/export partition/ice catalog/settings/output_format_parquet_compression_method flows to data files XFail 7s 62ms
/iceberg/export partition/ice catalog/direct writes OK 11s 964ms
/iceberg/export partition/ice catalog/direct writes/insert after export OK 4s 12ms
/iceberg/export partition/ice catalog/direct writes/alternating export and insert OK 7s 950ms
/iceberg/export partition/ice catalog/truncate OK 18s 656ms
/iceberg/export partition/ice catalog/truncate/truncate after export OK 7s 276ms
/iceberg/export partition/ice catalog/truncate/export after truncate repopulates destination OK 7s 437ms
/iceberg/export partition/ice catalog/truncate/truncate after insert OK 3s 939ms
/iceberg/export partition/ice catalog/minmax pruning OK 21s 544ms
/iceberg/export partition/ice catalog/minmax pruning/minmax pruning on exported data OK 10s 879ms
/iceberg/export partition/ice catalog/minmax pruning/minmax pruning on range predicate OK 10s 665ms
/iceberg/export partition/ice catalog/zk compat Skip 513us
/iceberg/export partition/glue catalog OK 6m 41s
/iceberg/export partition/glue catalog/sanity OK 45s 266ms
/iceberg/export partition/glue catalog/sanity/export single partition OK 4s 39ms
/iceberg/export partition/glue catalog/sanity/export all partitions OK 7s 694ms
/iceberg/export partition/glue catalog/sanity/export multiple partitions in one ALTER OK 31s 552ms
/iceberg/export partition/glue catalog/sanity/export empty partition OK 1s 35ms
/iceberg/export partition/glue catalog/sanity/export across replicas OK 942ms
/iceberg/export partition/glue catalog/partition compatibility Skip 482us
/iceberg/export partition/glue catalog/datatypes Skip 678us
/iceberg/export partition/glue catalog/manifest integrity OK 4s 758ms
/iceberg/export partition/glue catalog/manifest integrity/each export advances the snapshot list by one OK 776ms
/iceberg/export partition/glue catalog/manifest integrity/snapshot summary total-records matches exported row count OK 621ms
/iceberg/export partition/glue catalog/manifest integrity/partition spec references source columns OK 652ms
/iceberg/export partition/glue catalog/manifest integrity/data files have all required column stats OK 541ms
/iceberg/export partition/glue catalog/manifest integrity/value_counts across data files sum to source row count XFail 674ms
/iceberg/export partition/glue catalog/manifest integrity/data file paths live under the table prefix OK 617ms
/iceberg/export partition/glue catalog/manifest integrity/external iceberg reader round-trips exported data XFail 872ms
/iceberg/export partition/glue catalog/catalogs OK 1s 353ms
/iceberg/export partition/glue catalog/catalogs/catalog﹕ export appends a snapshot visible through the external catalog OK 660ms
/iceberg/export partition/glue catalog/catalogs/catalog﹕ external reader round-trips exported data XFail 692ms
/iceberg/export partition/glue catalog/transactions OK 1m 20s
/iceberg/export partition/glue catalog/transactions/sequential exports append one append-snapshot each OK 825ms
/iceberg/export partition/glue catalog/transactions/duplicate export within TTL is rejected OK 729ms
/iceberg/export partition/glue catalog/transactions/force_export overrides the idempotency gate OK 683ms
/iceberg/export partition/glue catalog/transactions/TTL expiry permits re-export of the same partition OK 6s 753ms
/iceberg/export partition/glue catalog/transactions/commit survives pre-publish failure (non-retry cleanup) OK 31s 543ms
/iceberg/export partition/glue catalog/transactions/commit durable across post-publish exception OK 924ms
/iceberg/export partition/glue catalog/transactions/commit idempotent after post-commit pre-status crash window OK 31s 903ms
/iceberg/export partition/glue catalog/transactions/manifest status transition failure is retried without duplicate commit OK 7s 174ms
/iceberg/export partition/glue catalog/concurrent writes OK 38s 58ms
/iceberg/export partition/glue catalog/concurrent writes/multi-statement ALTER commits each partition as its own snapshot OK 33s 186ms
/iceberg/export partition/glue catalog/concurrent writes/duplicate EXPORT inside one ALTER commits at most once OK 677ms
/iceberg/export partition/glue catalog/concurrent writes/INSERT after a scheduled EXPORT does not leak into the snapshot OK 4s 194ms
/iceberg/export partition/glue catalog/schema evolution Skip 456us
/iceberg/export partition/glue catalog/partition spec evolution OK 15s 878ms
/iceberg/export partition/glue catalog/partition spec evolution/single spec for multiple partition exports OK 7s 355ms
/iceberg/export partition/glue catalog/partition spec evolution/partition tuple matches partition_id across exports OK 1s 143ms
/iceberg/export partition/glue catalog/partition spec evolution/multi-column partition spec is preserved OK 7s 378ms
/iceberg/export partition/glue catalog/storage paths Skip 478us
/iceberg/export partition/glue catalog/disaster recovery OK 23s 320ms
/iceberg/export partition/glue catalog/disaster recovery/STOP MOVES holds the export PENDING, START MOVES resumes it OK 12s 99ms
/iceberg/export partition/glue catalog/disaster recovery/KILL EXPORT PARTITION while moves are stopped transitions to KILLED OK 6s 236ms
/iceberg/export partition/glue catalog/disaster recovery/KILL EXPORT PARTITION during commit transitions to KILLED OK 955ms
/iceberg/export partition/glue catalog/disaster recovery/EXPORT to a missing destination is rejected synchronously OK 427ms
/iceberg/export partition/glue catalog/disaster recovery/EXPORT of a non-existent partition id is a safe no-op OK 3s 600ms
/iceberg/export partition/glue catalog/multi replica recovery OK 2m 31s
/iceberg/export partition/glue catalog/multi replica recovery/concurrent exports from different replicas on different partitions OK 1s 172ms
/iceberg/export partition/glue catalog/multi replica recovery/concurrent exports of the same partition from different replicas are idempotent OK 1s 36ms
/iceberg/export partition/glue catalog/multi replica recovery/initiator dies mid-commit and peer replica finalizes exactly once OK 13s 480ms
/iceberg/export partition/glue catalog/multi replica recovery/export recovers after a ZooKeeper restart mid-flight OK 33s 705ms
/iceberg/export partition/glue catalog/multi replica recovery/export recovers after a ZooKeeper SIGKILL + docker start OK 33s 568ms
/iceberg/export partition/glue catalog/multi replica recovery/concurrent cross-replica exports survive a ZooKeeper restart OK 34s 525ms
/iceberg/export partition/glue catalog/multi replica recovery/concurrent cross-replica exports survive a ZooKeeper SIGKILL + docker start OK 34s 90ms
/iceberg/export partition/glue catalog/replicas OK 15s 180ms
/iceberg/export partition/glue catalog/replicas/peer replica completes export when initiator has allow_experimental_insert_into_iceberg disabled OK 15s 180ms
/iceberg/export partition/glue catalog/system monitoring OK 8s 255ms
/iceberg/export partition/glue catalog/system monitoring/every system․replicated_partition_exports column is populated on success OK 3s 953ms
/iceberg/export partition/glue catalog/system monitoring/system․part_log records one ExportPart per exported part OK 1s 254ms
/iceberg/export partition/glue catalog/system monitoring/PartsExports and ExportPartitionZooKeeper* profile events increment OK 965ms
/iceberg/export partition/glue catalog/system monitoring/KILL EXPORT preserves source_replica and create_time OK 1s 3ms
/iceberg/export partition/glue catalog/system monitoring/KILL EXPORT during commit preserves provenance and diagnostic fields OK 1s 77ms
/iceberg/export partition/glue catalog/settings OK 1s 320ms
/iceberg/export partition/glue catalog/settings/output_format_parquet_compression_method flows to data files XFail 1s 319ms
/iceberg/export partition/glue catalog/direct writes OK 2s 777ms
/iceberg/export partition/glue catalog/direct writes/insert after export OK 976ms
/iceberg/export partition/glue catalog/direct writes/alternating export and insert OK 1s 800ms
/iceberg/export partition/glue catalog/truncate OK 9s 621ms
/iceberg/export partition/glue catalog/truncate/truncate after export OK 4s 232ms
/iceberg/export partition/glue catalog/truncate/export after truncate repopulates destination OK 4s 363ms
/iceberg/export partition/glue catalog/truncate/truncate after insert OK 1s 24ms
/iceberg/export partition/glue catalog/minmax pruning OK 3s 153ms
/iceberg/export partition/glue catalog/minmax pruning/minmax pruning on exported data OK 1s 634ms
/iceberg/export partition/glue catalog/minmax pruning/minmax pruning on range predicate OK 1s 518ms
/iceberg/export partition/glue catalog/zk compat Skip 492us

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922