Iceberg Test Run Report

DateAug 31, 2026 23:52
Duration1h 32m
Framework TestFlows 2.0.250110.1002922

Artifacts

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

Attributes

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

Summary

99.7%OK
<1%Known

Statistics

Units Skip OK Fail XFail
Modules
1
1
Features
33
33
Scenarios
1583
1
1578
4
Checks
100
100
Steps
77890
77832
6
52

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/glue catalog/predicate push down/issue with decimal columnXFail 2s 266ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 716, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 98, 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 2s 399ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 716, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 98, 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 table engine/deletes/position delete smokeXFail 1s 835ms
https://github.com/ClickHouse/ClickHouse/issues/114183
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 720, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_table_engine/feature.py", line 30, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_table_engine/deletes.py", line 50, in feature
    Scenario(test=position_delete_smoke)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_table_engine/deletes.py", line 37, in position_delete_smoke
    iceberg_writes.assert_table_count(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/steps/iceberg_writes.py", line 225, in assert_table_count
    assert int(result.output.strip()) == expected_count, error()
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert int(result.output.strip()) == expected_count, error()

Assertion values
  assert int(result.output.strip()) == expected_count, error()
             ^ is 
  assert int(result.output.strip()) == expected_count, error()
             ^ is = '5'
  assert int(result.output.strip()) == expected_count, error()
             ^ is '5'
  assert int(result.output.strip()) == expected_count, error()
             ^ is = 
  assert int(result.output.strip()) == expected_count, error()
             ^ is = '5'
  assert int(result.output.strip()) == expected_count, error()
         ^ is = 5
  assert int(result.output.strip()) == expected_count, error()
                                       ^ is 3
  assert int(result.output.strip()) == expected_count, error()
                                    ^ is = False
  assert int(result.output.strip()) == expected_count, error()
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/steps/iceberg_writes.py', line 225 in 'assert_table_count'

217\|  
218\|  @TestStep(Then)
219\|  def assert_table_count(self, table_name, expected_count, node=None):
220\|      """Assert SELECT count() for a table."""
221\|      if node is None:
222\|          node = self.context.node
223\|  
224\|      result = node.query(f"SELECT count() FROM {table_name}")
225\|>     assert int(result.output.strip()) == expected_count, error()
226\|  
227\|  
228\|  @TestStep(Then)
/iceberg/iceberg table engine/compaction/compaction smokeXFail 2s 81ms
https://github.com/ClickHouse/ClickHouse/issues/114183
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 720, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_table_engine/feature.py", line 33, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_table_engine/compaction.py", line 70, in feature
    Scenario(test=compaction_smoke)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_table_engine/compaction.py", line 48, in compaction_smoke
    iceberg_writes.assert_table_count(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/steps/iceberg_writes.py", line 225, in assert_table_count
    assert int(result.output.strip()) == expected_count, error()
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert int(result.output.strip()) == expected_count, error()

Assertion values
  assert int(result.output.strip()) == expected_count, error()
             ^ is 
  assert int(result.output.strip()) == expected_count, error()
             ^ is = '100'
  assert int(result.output.strip()) == expected_count, error()
             ^ is '100'
  assert int(result.output.strip()) == expected_count, error()
             ^ is = 
  assert int(result.output.strip()) == expected_count, error()
             ^ is = '100'
  assert int(result.output.strip()) == expected_count, error()
         ^ is = 100
  assert int(result.output.strip()) == expected_count, error()
                                       ^ is 90
  assert int(result.output.strip()) == expected_count, error()
                                    ^ is = False
  assert int(result.output.strip()) == expected_count, error()
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/steps/iceberg_writes.py', line 225 in 'assert_table_count'

217\|  
218\|  @TestStep(Then)
219\|  def assert_table_count(self, table_name, expected_count, node=None):
220\|      """Assert SELECT count() for a table."""
221\|      if node is None:
222\|          node = self.context.node
223\|  
224\|      result = node.query(f"SELECT count() FROM {table_name}")
225\|>     assert int(result.output.strip()) == expected_count, error()
226\|  
227\|  
228\|  @TestStep(Then)

Results

Test Name Result Duration
/iceberg OK 1h 32m
/iceberg/iceberg engine OK 1h 10m
/iceberg/iceberg engine/glue catalog OK 1h 10m
/iceberg/iceberg engine/glue catalog/feature OK 43s 519ms
/iceberg/iceberg engine/glue catalog/feature/sanity OK 4s 672ms
/iceberg/iceberg engine/glue catalog/feature/sort order OK 12s 213ms
/iceberg/iceberg engine/glue catalog/feature/recreate table OK 2s 188ms
/iceberg/iceberg engine/glue catalog/feature/multiple tables OK 2s 466ms
/iceberg/iceberg engine/glue catalog/feature/recreate table and database OK 4s 31ms
/iceberg/iceberg engine/glue catalog/feature/rename database OK 1s 501ms
/iceberg/iceberg engine/glue catalog/feature/rename table from iceberg database OK 1s 541ms
/iceberg/iceberg engine/glue catalog/feature/use database OK 1s 692ms
/iceberg/iceberg engine/glue catalog/feature/array join OK 1s 978ms
/iceberg/iceberg engine/glue catalog/feature/show data lake catalogs in system tables OK 3s 456ms
/iceberg/iceberg engine/glue catalog/feature/show tables queries OK 2s 114ms
/iceberg/iceberg engine/glue catalog/feature/show databases queries OK 1s 934ms
/iceberg/iceberg engine/glue catalog/feature/boolean issue OK 1s 835ms
/iceberg/iceberg engine/glue catalog/feature/select from system databases OK 1s 887ms
/iceberg/iceberg engine/glue catalog/feature OK 11s 823ms
/iceberg/iceberg engine/glue catalog/feature/alter column OK 2s 130ms
/iceberg/iceberg engine/glue catalog/feature/alter comment columns OK 1s 631ms
/iceberg/iceberg engine/glue catalog/feature/alter partitions OK 3s 181ms
/iceberg/iceberg engine/glue catalog/feature/alter settings OK 1s 505ms
/iceberg/iceberg engine/glue catalog/feature/alter delete OK 1s 510ms
/iceberg/iceberg engine/glue catalog/feature/alter order by OK 1s 861ms
/iceberg/iceberg engine/glue catalog/column rbac OK 7m 12s
/iceberg/iceberg engine/glue catalog/column rbac/combination #0 OK 4s 151ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #1 OK 4s 144ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #2 OK 4s 9ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #3 OK 4s 188ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #4 OK 4s 149ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #5 OK 4s 79ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #6 OK 4s 250ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #7 OK 4s 186ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #8 OK 4s 155ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #9 OK 4s 647ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #10 OK 4s 303ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #11 OK 4s 175ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #12 OK 4s 34ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #13 OK 4s 144ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #14 OK 4s 32ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #15 OK 5s 184ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #16 OK 4s 642ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #17 OK 4s 291ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #18 OK 4s 22ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #19 OK 4s 81ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #20 OK 4s 236ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #21 OK 4s 83ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #22 OK 4s 146ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #23 OK 3s 959ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #24 OK 4s 309ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #25 OK 3s 975ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #26 OK 4s 130ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #27 OK 4s 83ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #28 OK 4s 209ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #29 OK 4s 426ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #30 OK 4s 186ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #31 OK 4s 152ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #32 OK 4s 59ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #33 OK 4s 650ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #34 OK 4s 207ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #35 OK 4s 16ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #36 OK 4s 28ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #37 OK 4s 195ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #38 OK 4s 44ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #39 OK 4s 13ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #40 OK 4s 289ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #41 OK 4s 74ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #42 OK 4s 783ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #43 OK 4s 282ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #44 OK 4s 51ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #45 OK 4s 485ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #46 OK 4s 50ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #47 OK 4s 399ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #48 OK 4s 14ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #49 OK 4s 167ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #50 OK 4s 82ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #51 OK 4s 753ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #52 OK 4s 45ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #53 OK 4s 356ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #54 OK 4s 10ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #55 OK 3s 962ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #56 OK 3s 978ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #57 OK 4s 266ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #58 OK 4s 422ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #59 OK 4s 190ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #60 OK 4s 591ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #61 OK 4s 294ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #62 OK 4s 601ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #63 OK 4s 447ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #64 OK 4s 265ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #65 OK 4s 213ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #66 OK 4s 109ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #67 OK 4s 863ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #68 OK 4s 491ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #69 OK 4s 135ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #70 OK 4s 131ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #71 OK 4s 365ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #72 OK 4s 314ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #73 OK 4s 144ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #74 OK 4s 138ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #75 OK 4s 474ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #76 OK 4s 803ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #77 OK 4s 22ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #78 OK 5s 348ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #79 OK 4s 332ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #80 OK 4s 248ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #81 OK 4s 275ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #82 OK 4s 235ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #83 OK 4s 458ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #84 OK 4s 239ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #85 OK 4s 470ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #86 OK 4s 173ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #87 OK 4s 422ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #88 OK 4s 20ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #89 OK 4s 248ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #90 OK 4s 506ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #91 OK 5s 389ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #92 OK 4s 470ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #93 OK 4s 116ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #94 OK 4s 203ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #95 OK 4s 181ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #96 OK 4s 230ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #97 OK 5s 300ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #98 OK 4s 192ms
/iceberg/iceberg engine/glue catalog/column rbac/combination #99 OK 4s 561ms
/iceberg/iceberg engine/glue catalog/predicate push down OK 51s 731ms
/iceberg/iceberg engine/glue catalog/predicate push down/check input format parquet filter push down OK 47s 62ms
/iceberg/iceberg engine/glue catalog/predicate push down/issue with decimal column XFail 2s 266ms
/iceberg/iceberg engine/glue catalog/predicate push down/issue with float column XFail 2s 399ms
/iceberg/iceberg engine/glue catalog/rbac OK 7s 43ms
/iceberg/iceberg engine/glue catalog/rbac/select privilege OK 2s 325ms
/iceberg/iceberg engine/glue catalog/rbac/drop table privilege OK 2s 500ms
/iceberg/iceberg engine/glue catalog/rbac/drop database privilege OK 2s 215ms
/iceberg/iceberg engine/glue catalog/row policy OK 1m 10s
/iceberg/iceberg engine/glue catalog/row policy/row policies OK 1m 10s
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #0 OK 634ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #1 OK 828ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #2 OK 668ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #3 OK 604ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #4 OK 745ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #5 OK 697ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #6 OK 688ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #7 OK 657ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #8 OK 694ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #9 OK 704ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #10 OK 684ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #11 OK 652ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #12 OK 656ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #13 OK 603ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #14 OK 592ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #15 OK 613ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #16 OK 648ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #17 OK 681ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #18 OK 707ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #19 OK 667ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #20 OK 629ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #21 OK 637ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #22 OK 640ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #23 OK 708ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #24 OK 714ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #25 OK 590ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #26 OK 735ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #27 OK 679ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #28 OK 637ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #29 OK 717ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #30 OK 688ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #31 OK 627ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #32 OK 638ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #33 OK 701ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #34 OK 730ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #35 OK 575ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #36 OK 923ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #37 OK 659ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #38 OK 698ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #39 OK 581ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #40 OK 599ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #41 OK 653ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #42 OK 586ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #43 OK 716ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #44 OK 630ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #45 OK 687ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #46 OK 714ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #47 OK 629ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #48 OK 683ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #49 OK 639ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #50 OK 590ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #51 OK 711ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #52 OK 660ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #53 OK 685ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #54 OK 684ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #55 OK 641ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #56 OK 697ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #57 OK 700ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #58 OK 709ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #59 OK 589ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #60 OK 686ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #61 OK 695ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #62 OK 702ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #63 OK 590ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #64 OK 711ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #65 OK 629ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #66 OK 644ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #67 OK 721ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #68 OK 635ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #69 OK 625ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #70 OK 692ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #71 OK 572ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #72 OK 718ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #73 OK 640ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #74 OK 691ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #75 OK 648ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #76 OK 624ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #77 OK 628ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #78 OK 570ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #79 OK 684ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #80 OK 713ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #81 OK 661ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #82 OK 559ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #83 OK 635ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #84 OK 700ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #85 OK 648ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #86 OK 591ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #87 OK 697ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #88 OK 685ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #89 OK 702ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #90 OK 610ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #91 OK 589ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #92 OK 644ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #93 OK 707ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #94 OK 575ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #95 OK 641ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #96 OK 731ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #97 OK 657ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #98 OK 669ms
/iceberg/iceberg engine/glue catalog/row policy/row policies/combination #99 OK 626ms
/iceberg/iceberg engine/glue catalog/sql clauses OK 4s 277ms
/iceberg/iceberg engine/glue catalog/sql clauses/where clause OK 470ms
/iceberg/iceberg engine/glue catalog/sql clauses/prewhere clause OK 117ms
/iceberg/iceberg engine/glue catalog/sql clauses/group by clause OK 113ms
/iceberg/iceberg engine/glue catalog/sql clauses/having clause OK 112ms
/iceberg/iceberg engine/glue catalog/sql clauses/limit clause OK 220ms
/iceberg/iceberg engine/glue catalog/sql clauses/distinct clause OK 119ms
/iceberg/iceberg engine/glue catalog/sql clauses/join clause OK 716ms
/iceberg/iceberg engine/glue catalog/sql clauses/order by clause OK 571ms
/iceberg/iceberg engine/glue catalog/equality delete reads OK 23m 6s
/iceberg/iceberg engine/glue catalog/equality delete reads/run equality deletes combinations OK 23m 6s
/iceberg/iceberg engine/glue catalog/position delete reads OK 2s 952ms
/iceberg/iceberg engine/glue catalog/position delete reads/read position deletes OK 2s 951ms
/iceberg/iceberg engine/glue catalog/overwrite OK 4s 851ms
/iceberg/iceberg engine/glue catalog/overwrite/overwrite OK 2s 470ms
/iceberg/iceberg engine/glue catalog/overwrite/append OK 2s 379ms
/iceberg/iceberg engine/glue catalog/schema evolution OK 18m 25s
/iceberg/iceberg engine/glue catalog/schema evolution/#0 OK 10s 317ms
/iceberg/iceberg engine/glue catalog/schema evolution/#1 OK 11s 722ms
/iceberg/iceberg engine/glue catalog/schema evolution/#2 OK 12s 162ms
/iceberg/iceberg engine/glue catalog/schema evolution/#3 OK 10s 405ms
/iceberg/iceberg engine/glue catalog/schema evolution/#4 OK 10s 555ms
/iceberg/iceberg engine/glue catalog/schema evolution/#5 OK 10s 206ms
/iceberg/iceberg engine/glue catalog/schema evolution/#6 OK 9s 606ms
/iceberg/iceberg engine/glue catalog/schema evolution/#7 OK 11s 61ms
/iceberg/iceberg engine/glue catalog/schema evolution/#8 OK 10s 764ms
/iceberg/iceberg engine/glue catalog/schema evolution/#9 OK 10s 258ms
/iceberg/iceberg engine/glue catalog/schema evolution/#10 OK 10s 472ms
/iceberg/iceberg engine/glue catalog/schema evolution/#11 OK 11s 802ms
/iceberg/iceberg engine/glue catalog/schema evolution/#12 OK 11s 144ms
/iceberg/iceberg engine/glue catalog/schema evolution/#13 OK 11s 25ms
/iceberg/iceberg engine/glue catalog/schema evolution/#14 OK 11s 492ms
/iceberg/iceberg engine/glue catalog/schema evolution/#15 OK 9s 956ms
/iceberg/iceberg engine/glue catalog/schema evolution/#16 OK 10s 577ms
/iceberg/iceberg engine/glue catalog/schema evolution/#17 OK 10s 641ms
/iceberg/iceberg engine/glue catalog/schema evolution/#18 OK 10s 634ms
/iceberg/iceberg engine/glue catalog/schema evolution/#19 OK 10s 292ms
/iceberg/iceberg engine/glue catalog/schema evolution/#20 OK 11s 893ms
/iceberg/iceberg engine/glue catalog/schema evolution/#21 OK 9s 882ms
/iceberg/iceberg engine/glue catalog/schema evolution/#22 OK 10s 850ms
/iceberg/iceberg engine/glue catalog/schema evolution/#23 OK 12s 58ms
/iceberg/iceberg engine/glue catalog/schema evolution/#24 OK 10s 541ms
/iceberg/iceberg engine/glue catalog/schema evolution/#25 OK 11s 5ms
/iceberg/iceberg engine/glue catalog/schema evolution/#26 OK 9s 939ms
/iceberg/iceberg engine/glue catalog/schema evolution/#27 OK 12s 293ms
/iceberg/iceberg engine/glue catalog/schema evolution/#28 OK 10s 655ms
/iceberg/iceberg engine/glue catalog/schema evolution/#29 OK 10s 806ms
/iceberg/iceberg engine/glue catalog/schema evolution/#30 OK 10s 823ms
/iceberg/iceberg engine/glue catalog/schema evolution/#31 OK 11s 338ms
/iceberg/iceberg engine/glue catalog/schema evolution/#32 OK 12s 98ms
/iceberg/iceberg engine/glue catalog/schema evolution/#33 OK 11s 414ms
/iceberg/iceberg engine/glue catalog/schema evolution/#34 OK 11s 182ms
/iceberg/iceberg engine/glue catalog/schema evolution/#35 OK 11s 213ms
/iceberg/iceberg engine/glue catalog/schema evolution/#36 OK 12s 997ms
/iceberg/iceberg engine/glue catalog/schema evolution/#37 OK 11s 149ms
/iceberg/iceberg engine/glue catalog/schema evolution/#38 OK 10s 409ms
/iceberg/iceberg engine/glue catalog/schema evolution/#39 OK 12s 228ms
/iceberg/iceberg engine/glue catalog/schema evolution/#40 OK 9s 860ms
/iceberg/iceberg engine/glue catalog/schema evolution/#41 OK 10s 626ms
/iceberg/iceberg engine/glue catalog/schema evolution/#42 OK 10s 35ms
/iceberg/iceberg engine/glue catalog/schema evolution/#43 OK 9s 871ms
/iceberg/iceberg engine/glue catalog/schema evolution/#44 OK 10s 575ms
/iceberg/iceberg engine/glue catalog/schema evolution/#45 OK 10s 141ms
/iceberg/iceberg engine/glue catalog/schema evolution/#46 OK 9s 981ms
/iceberg/iceberg engine/glue catalog/schema evolution/#47 OK 10s 784ms
/iceberg/iceberg engine/glue catalog/schema evolution/#48 OK 12s 363ms
/iceberg/iceberg engine/glue catalog/schema evolution/#49 OK 10s 192ms
/iceberg/iceberg engine/glue catalog/schema evolution/#50 OK 11s 8ms
/iceberg/iceberg engine/glue catalog/schema evolution/#51 OK 11s 921ms
/iceberg/iceberg engine/glue catalog/schema evolution/#52 OK 11s 50ms
/iceberg/iceberg engine/glue catalog/schema evolution/#53 OK 11s 765ms
/iceberg/iceberg engine/glue catalog/schema evolution/#54 OK 10s 52ms
/iceberg/iceberg engine/glue catalog/schema evolution/#55 OK 11s 370ms
/iceberg/iceberg engine/glue catalog/schema evolution/#56 OK 10s 951ms
/iceberg/iceberg engine/glue catalog/schema evolution/#57 OK 11s 424ms
/iceberg/iceberg engine/glue catalog/schema evolution/#58 OK 10s 149ms
/iceberg/iceberg engine/glue catalog/schema evolution/#59 OK 12s 855ms
/iceberg/iceberg engine/glue catalog/schema evolution/#60 OK 12s 581ms
/iceberg/iceberg engine/glue catalog/schema evolution/#61 OK 10s 806ms
/iceberg/iceberg engine/glue catalog/schema evolution/#62 OK 10s 465ms
/iceberg/iceberg engine/glue catalog/schema evolution/#63 OK 11s 270ms
/iceberg/iceberg engine/glue catalog/schema evolution/#64 OK 11s 790ms
/iceberg/iceberg engine/glue catalog/schema evolution/#65 OK 11s 511ms
/iceberg/iceberg engine/glue catalog/schema evolution/#66 OK 10s 674ms
/iceberg/iceberg engine/glue catalog/schema evolution/#67 OK 9s 570ms
/iceberg/iceberg engine/glue catalog/schema evolution/#68 OK 11s 599ms
/iceberg/iceberg engine/glue catalog/schema evolution/#69 OK 10s 50ms
/iceberg/iceberg engine/glue catalog/schema evolution/#70 OK 11s 823ms
/iceberg/iceberg engine/glue catalog/schema evolution/#71 OK 11s 468ms
/iceberg/iceberg engine/glue catalog/schema evolution/#72 OK 14s 98ms
/iceberg/iceberg engine/glue catalog/schema evolution/#73 OK 12s 735ms
/iceberg/iceberg engine/glue catalog/schema evolution/#74 OK 10s 931ms
/iceberg/iceberg engine/glue catalog/schema evolution/#75 OK 12s 623ms
/iceberg/iceberg engine/glue catalog/schema evolution/#76 OK 10s 481ms
/iceberg/iceberg engine/glue catalog/schema evolution/#77 OK 10s 107ms
/iceberg/iceberg engine/glue catalog/schema evolution/#78 OK 12s 378ms
/iceberg/iceberg engine/glue catalog/schema evolution/#79 OK 11s 304ms
/iceberg/iceberg engine/glue catalog/schema evolution/#80 OK 11s 39ms
/iceberg/iceberg engine/glue catalog/schema evolution/#81 OK 10s 742ms
/iceberg/iceberg engine/glue catalog/schema evolution/#82 OK 11s 979ms
/iceberg/iceberg engine/glue catalog/schema evolution/#83 OK 9s 710ms
/iceberg/iceberg engine/glue catalog/schema evolution/#84 OK 11s 529ms
/iceberg/iceberg engine/glue catalog/schema evolution/#85 OK 10s 303ms
/iceberg/iceberg engine/glue catalog/schema evolution/#86 OK 10s 790ms
/iceberg/iceberg engine/glue catalog/schema evolution/#87 OK 11s 612ms
/iceberg/iceberg engine/glue catalog/schema evolution/#88 OK 9s 959ms
/iceberg/iceberg engine/glue catalog/schema evolution/#89 OK 10s 866ms
/iceberg/iceberg engine/glue catalog/schema evolution/#90 OK 11s 461ms
/iceberg/iceberg engine/glue catalog/schema evolution/#91 OK 12s 33ms
/iceberg/iceberg engine/glue catalog/schema evolution/#92 OK 11s 127ms
/iceberg/iceberg engine/glue catalog/schema evolution/#93 OK 10s 828ms
/iceberg/iceberg engine/glue catalog/schema evolution/#94 OK 9s 711ms
/iceberg/iceberg engine/glue catalog/schema evolution/#95 OK 11s 206ms
/iceberg/iceberg engine/glue catalog/schema evolution/#96 OK 11s 961ms
/iceberg/iceberg engine/glue catalog/schema evolution/#97 OK 10s 899ms
/iceberg/iceberg engine/glue catalog/schema evolution/#98 OK 10s 876ms
/iceberg/iceberg engine/glue catalog/schema evolution/#99 OK 11s 925ms
/iceberg/iceberg engine/glue catalog/swarm OK 2s 764ms
/iceberg/iceberg engine/glue catalog/swarm/feature support validation OK 577us
/iceberg/iceberg engine/glue catalog/swarm/swarm examples OK 2s 671ms
/iceberg/iceberg engine/glue catalog/nested datatypes OK 1m 58s
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 1 OK 2s 263ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 51 OK 2s 715ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 101 OK 3s 240ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 151 OK 3s 480ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 201 OK 3s 566ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 251 OK 4s 27ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 301 OK 4s 313ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 351 OK 4s 807ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 401 OK 5s 77ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 451 OK 5s 642ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 501 OK 5s 945ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 551 OK 6s 447ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 601 OK 6s 802ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 651 OK 7s 174ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 701 OK 7s 755ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 751 OK 8s 318ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 801 OK 8s 482ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 851 OK 8s 978ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 901 OK 9s 685ms
/iceberg/iceberg engine/glue catalog/nested datatypes/number of columns 951 OK 9s 685ms
/iceberg/iceberg engine/glue catalog/partition evolution OK 10m 57s
/iceberg/iceberg engine/glue catalog/partition evolution/#0 OK 6s 443ms
/iceberg/iceberg engine/glue catalog/partition evolution/#1 OK 6s 647ms
/iceberg/iceberg engine/glue catalog/partition evolution/#2 OK 7s 61ms
/iceberg/iceberg engine/glue catalog/partition evolution/#3 OK 6s 405ms
/iceberg/iceberg engine/glue catalog/partition evolution/#4 OK 6s 677ms
/iceberg/iceberg engine/glue catalog/partition evolution/#5 OK 6s 396ms
/iceberg/iceberg engine/glue catalog/partition evolution/#6 OK 6s 394ms
/iceberg/iceberg engine/glue catalog/partition evolution/#7 OK 6s 928ms
/iceberg/iceberg engine/glue catalog/partition evolution/#8 OK 6s 855ms
/iceberg/iceberg engine/glue catalog/partition evolution/#9 OK 6s 476ms
/iceberg/iceberg engine/glue catalog/partition evolution/#10 OK 6s 495ms
/iceberg/iceberg engine/glue catalog/partition evolution/#11 OK 6s 399ms
/iceberg/iceberg engine/glue catalog/partition evolution/#12 OK 7s 57ms
/iceberg/iceberg engine/glue catalog/partition evolution/#13 OK 6s 500ms
/iceberg/iceberg engine/glue catalog/partition evolution/#14 OK 6s 203ms
/iceberg/iceberg engine/glue catalog/partition evolution/#15 OK 6s 305ms
/iceberg/iceberg engine/glue catalog/partition evolution/#16 OK 6s 754ms
/iceberg/iceberg engine/glue catalog/partition evolution/#17 OK 6s 569ms
/iceberg/iceberg engine/glue catalog/partition evolution/#18 OK 6s 536ms
/iceberg/iceberg engine/glue catalog/partition evolution/#19 OK 6s 594ms
/iceberg/iceberg engine/glue catalog/partition evolution/#20 OK 6s 565ms
/iceberg/iceberg engine/glue catalog/partition evolution/#21 OK 6s 467ms
/iceberg/iceberg engine/glue catalog/partition evolution/#22 OK 6s 538ms
/iceberg/iceberg engine/glue catalog/partition evolution/#23 OK 6s 535ms
/iceberg/iceberg engine/glue catalog/partition evolution/#24 OK 6s 366ms
/iceberg/iceberg engine/glue catalog/partition evolution/#25 OK 6s 258ms
/iceberg/iceberg engine/glue catalog/partition evolution/#26 OK 6s 185ms
/iceberg/iceberg engine/glue catalog/partition evolution/#27 OK 6s 334ms
/iceberg/iceberg engine/glue catalog/partition evolution/#28 OK 6s 270ms
/iceberg/iceberg engine/glue catalog/partition evolution/#29 OK 6s 809ms
/iceberg/iceberg engine/glue catalog/partition evolution/#30 OK 6s 346ms
/iceberg/iceberg engine/glue catalog/partition evolution/#31 OK 6s 374ms
/iceberg/iceberg engine/glue catalog/partition evolution/#32 OK 6s 392ms
/iceberg/iceberg engine/glue catalog/partition evolution/#33 OK 6s 647ms
/iceberg/iceberg engine/glue catalog/partition evolution/#34 OK 6s 588ms
/iceberg/iceberg engine/glue catalog/partition evolution/#35 OK 6s 205ms
/iceberg/iceberg engine/glue catalog/partition evolution/#36 OK 6s 177ms
/iceberg/iceberg engine/glue catalog/partition evolution/#37 OK 6s 787ms
/iceberg/iceberg engine/glue catalog/partition evolution/#38 OK 6s 676ms
/iceberg/iceberg engine/glue catalog/partition evolution/#39 OK 6s 287ms
/iceberg/iceberg engine/glue catalog/partition evolution/#40 OK 6s 536ms
/iceberg/iceberg engine/glue catalog/partition evolution/#41 OK 6s 890ms
/iceberg/iceberg engine/glue catalog/partition evolution/#42 OK 6s 435ms
/iceberg/iceberg engine/glue catalog/partition evolution/#43 OK 6s 338ms
/iceberg/iceberg engine/glue catalog/partition evolution/#44 OK 6s 271ms
/iceberg/iceberg engine/glue catalog/partition evolution/#45 OK 6s 944ms
/iceberg/iceberg engine/glue catalog/partition evolution/#46 OK 6s 472ms
/iceberg/iceberg engine/glue catalog/partition evolution/#47 OK 6s 327ms
/iceberg/iceberg engine/glue catalog/partition evolution/#48 OK 6s 420ms
/iceberg/iceberg engine/glue catalog/partition evolution/#49 OK 6s 688ms
/iceberg/iceberg engine/glue catalog/partition evolution/#50 OK 6s 739ms
/iceberg/iceberg engine/glue catalog/partition evolution/#51 OK 6s 480ms
/iceberg/iceberg engine/glue catalog/partition evolution/#52 OK 6s 572ms
/iceberg/iceberg engine/glue catalog/partition evolution/#53 OK 6s 524ms
/iceberg/iceberg engine/glue catalog/partition evolution/#54 OK 6s 469ms
/iceberg/iceberg engine/glue catalog/partition evolution/#55 OK 6s 527ms
/iceberg/iceberg engine/glue catalog/partition evolution/#56 OK 6s 372ms
/iceberg/iceberg engine/glue catalog/partition evolution/#57 OK 6s 359ms
/iceberg/iceberg engine/glue catalog/partition evolution/#58 OK 6s 929ms
/iceberg/iceberg engine/glue catalog/partition evolution/#59 OK 6s 450ms
/iceberg/iceberg engine/glue catalog/partition evolution/#60 OK 6s 516ms
/iceberg/iceberg engine/glue catalog/partition evolution/#61 OK 6s 412ms
/iceberg/iceberg engine/glue catalog/partition evolution/#62 OK 6s 584ms
/iceberg/iceberg engine/glue catalog/partition evolution/#63 OK 6s 498ms
/iceberg/iceberg engine/glue catalog/partition evolution/#64 OK 6s 401ms
/iceberg/iceberg engine/glue catalog/partition evolution/#65 OK 6s 639ms
/iceberg/iceberg engine/glue catalog/partition evolution/#66 OK 6s 779ms
/iceberg/iceberg engine/glue catalog/partition evolution/#67 OK 6s 348ms
/iceberg/iceberg engine/glue catalog/partition evolution/#68 OK 6s 411ms
/iceberg/iceberg engine/glue catalog/partition evolution/#69 OK 6s 671ms
/iceberg/iceberg engine/glue catalog/partition evolution/#70 OK 6s 761ms
/iceberg/iceberg engine/glue catalog/partition evolution/#71 OK 6s 351ms
/iceberg/iceberg engine/glue catalog/partition evolution/#72 OK 6s 254ms
/iceberg/iceberg engine/glue catalog/partition evolution/#73 OK 6s 493ms
/iceberg/iceberg engine/glue catalog/partition evolution/#74 OK 6s 804ms
/iceberg/iceberg engine/glue catalog/partition evolution/#75 OK 6s 605ms
/iceberg/iceberg engine/glue catalog/partition evolution/#76 OK 6s 458ms
/iceberg/iceberg engine/glue catalog/partition evolution/#77 OK 6s 313ms
/iceberg/iceberg engine/glue catalog/partition evolution/#78 OK 6s 556ms
/iceberg/iceberg engine/glue catalog/partition evolution/#79 OK 6s 436ms
/iceberg/iceberg engine/glue catalog/partition evolution/#80 OK 6s 573ms
/iceberg/iceberg engine/glue catalog/partition evolution/#81 OK 6s 474ms
/iceberg/iceberg engine/glue catalog/partition evolution/#82 OK 6s 644ms
/iceberg/iceberg engine/glue catalog/partition evolution/#83 OK 6s 458ms
/iceberg/iceberg engine/glue catalog/partition evolution/#84 OK 6s 474ms
/iceberg/iceberg engine/glue catalog/partition evolution/#85 OK 6s 360ms
/iceberg/iceberg engine/glue catalog/partition evolution/#86 OK 6s 793ms
/iceberg/iceberg engine/glue catalog/partition evolution/#87 OK 6s 240ms
/iceberg/iceberg engine/glue catalog/partition evolution/#88 OK 6s 310ms
/iceberg/iceberg engine/glue catalog/partition evolution/#89 OK 6s 676ms
/iceberg/iceberg engine/glue catalog/partition evolution/#90 OK 6s 952ms
/iceberg/iceberg engine/glue catalog/partition evolution/#91 OK 6s 575ms
/iceberg/iceberg engine/glue catalog/partition evolution/#92 OK 6s 651ms
/iceberg/iceberg engine/glue catalog/partition evolution/#93 OK 7s 69ms
/iceberg/iceberg engine/glue catalog/partition evolution/#94 OK 6s 823ms
/iceberg/iceberg engine/glue catalog/partition evolution/#95 OK 6s 564ms
/iceberg/iceberg engine/glue catalog/partition evolution/#96 OK 7s 179ms
/iceberg/iceberg engine/glue catalog/partition evolution/#97 OK 6s 463ms
/iceberg/iceberg engine/glue catalog/partition evolution/#98 OK 7s 339ms
/iceberg/iceberg engine/glue catalog/partition evolution/#99 OK 9s 465ms
/iceberg/iceberg engine/glue catalog/iceberg partition pruning OK 1m 6s
/iceberg/iceberg engine/glue catalog/iceberg partition pruning/check iceberg partition pruning with integer type OK 48s 369ms
/iceberg/iceberg engine/glue catalog/iceberg partition pruning/check partition pruning with complex where clause OK 5s 50ms
/iceberg/iceberg engine/glue catalog/iceberg partition pruning/partition pruning with date type OK 4s 919ms
/iceberg/iceberg engine/glue catalog/iceberg partition pruning/non partitioned table OK 7s 826ms
/iceberg/iceberg engine/glue catalog/datatypes OK 13s 629ms
/iceberg/iceberg engine/glue catalog/datatypes/data types check where OK 13s 628ms
/iceberg/iceberg engine/glue catalog/iceberg iterator race condition OK 4m 28s
/iceberg/iceberg engine/glue catalog/iceberg iterator race condition/feature support validation OK 509us
/iceberg/iceberg engine/glue catalog/iceberg iterator race condition/iceberg iterator race condition OK 4m 28s
/iceberg/iceberg engine/glue catalog/dot separated column names OK 4s 600ms
/iceberg/iceberg engine/glue catalog/dot separated column names/sanity dot separated column names OK 2s 24ms
/iceberg/iceberg engine/glue catalog/dot separated column names/all datatypes with dot separated columns OK 2s 574ms
/iceberg/iceberg engine/glue catalog/show_data_lake_catalogs hint OK 1ms
/iceberg/iceberg engine/glue catalog/show_data_lake_catalogs hint/similar table names hint Skip 1ms
/iceberg/iceberg table engine OK 18m 55s
/iceberg/iceberg table engine/feature OK 11m 11s
/iceberg/iceberg table engine/feature/row policies OK 11m 11s
/iceberg/iceberg table engine/feature/row policies/combination #0 OK 597ms
/iceberg/iceberg table engine/feature/row policies/combination #1 OK 843ms
/iceberg/iceberg table engine/feature/row policies/combination #2 OK 684ms
/iceberg/iceberg table engine/feature/row policies/combination #3 OK 609ms
/iceberg/iceberg table engine/feature/row policies/combination #4 OK 707ms
/iceberg/iceberg table engine/feature/row policies/combination #5 OK 736ms
/iceberg/iceberg table engine/feature/row policies/combination #6 OK 689ms
/iceberg/iceberg table engine/feature/row policies/combination #7 OK 656ms
/iceberg/iceberg table engine/feature/row policies/combination #8 OK 705ms
/iceberg/iceberg table engine/feature/row policies/combination #9 OK 725ms
/iceberg/iceberg table engine/feature/row policies/combination #10 OK 680ms
/iceberg/iceberg table engine/feature/row policies/combination #11 OK 593ms
/iceberg/iceberg table engine/feature/row policies/combination #12 OK 638ms
/iceberg/iceberg table engine/feature/row policies/combination #13 OK 585ms
/iceberg/iceberg table engine/feature/row policies/combination #14 OK 579ms
/iceberg/iceberg table engine/feature/row policies/combination #15 OK 585ms
/iceberg/iceberg table engine/feature/row policies/combination #16 OK 576ms
/iceberg/iceberg table engine/feature/row policies/combination #17 OK 724ms
/iceberg/iceberg table engine/feature/row policies/combination #18 OK 698ms
/iceberg/iceberg table engine/feature/row policies/combination #19 OK 581ms
/iceberg/iceberg table engine/feature/row policies/combination #20 OK 669ms
/iceberg/iceberg table engine/feature/row policies/combination #21 OK 707ms
/iceberg/iceberg table engine/feature/row policies/combination #22 OK 647ms
/iceberg/iceberg table engine/feature/row policies/combination #23 OK 708ms
/iceberg/iceberg table engine/feature/row policies/combination #24 OK 698ms
/iceberg/iceberg table engine/feature/row policies/combination #25 OK 586ms
/iceberg/iceberg table engine/feature/row policies/combination #26 OK 692ms
/iceberg/iceberg table engine/feature/row policies/combination #27 OK 734ms
/iceberg/iceberg table engine/feature/row policies/combination #28 OK 652ms
/iceberg/iceberg table engine/feature/row policies/combination #29 OK 744ms
/iceberg/iceberg table engine/feature/row policies/combination #30 OK 755ms
/iceberg/iceberg table engine/feature/row policies/combination #31 OK 677ms
/iceberg/iceberg table engine/feature/row policies/combination #32 OK 633ms
/iceberg/iceberg table engine/feature/row policies/combination #33 OK 729ms
/iceberg/iceberg table engine/feature/row policies/combination #34 OK 717ms
/iceberg/iceberg table engine/feature/row policies/combination #35 OK 596ms
/iceberg/iceberg table engine/feature/row policies/combination #36 OK 698ms
/iceberg/iceberg table engine/feature/row policies/combination #37 OK 646ms
/iceberg/iceberg table engine/feature/row policies/combination #38 OK 748ms
/iceberg/iceberg table engine/feature/row policies/combination #39 OK 584ms
/iceberg/iceberg table engine/feature/row policies/combination #40 OK 584ms
/iceberg/iceberg table engine/feature/row policies/combination #41 OK 665ms
/iceberg/iceberg table engine/feature/row policies/combination #42 OK 607ms
/iceberg/iceberg table engine/feature/row policies/combination #43 OK 711ms
/iceberg/iceberg table engine/feature/row policies/combination #44 OK 657ms
/iceberg/iceberg table engine/feature/row policies/combination #45 OK 705ms
/iceberg/iceberg table engine/feature/row policies/combination #46 OK 726ms
/iceberg/iceberg table engine/feature/row policies/combination #47 OK 701ms
/iceberg/iceberg table engine/feature/row policies/combination #48 OK 748ms
/iceberg/iceberg table engine/feature/row policies/combination #49 OK 653ms
/iceberg/iceberg table engine/feature/row policies/combination #50 OK 573ms
/iceberg/iceberg table engine/feature/row policies/combination #51 OK 715ms
/iceberg/iceberg table engine/feature/row policies/combination #52 OK 654ms
/iceberg/iceberg table engine/feature/row policies/combination #53 OK 719ms
/iceberg/iceberg table engine/feature/row policies/combination #54 OK 689ms
/iceberg/iceberg table engine/feature/row policies/combination #55 OK 654ms
/iceberg/iceberg table engine/feature/row policies/combination #56 OK 735ms
/iceberg/iceberg table engine/feature/row policies/combination #57 OK 717ms
/iceberg/iceberg table engine/feature/row policies/combination #58 OK 712ms
/iceberg/iceberg table engine/feature/row policies/combination #59 OK 591ms
/iceberg/iceberg table engine/feature/row policies/combination #60 OK 701ms
/iceberg/iceberg table engine/feature/row policies/combination #61 OK 710ms
/iceberg/iceberg table engine/feature/row policies/combination #62 OK 734ms
/iceberg/iceberg table engine/feature/row policies/combination #63 OK 585ms
/iceberg/iceberg table engine/feature/row policies/combination #64 OK 731ms
/iceberg/iceberg table engine/feature/row policies/combination #65 OK 667ms
/iceberg/iceberg table engine/feature/row policies/combination #66 OK 672ms
/iceberg/iceberg table engine/feature/row policies/combination #67 OK 737ms
/iceberg/iceberg table engine/feature/row policies/combination #68 OK 703ms
/iceberg/iceberg table engine/feature/row policies/combination #69 OK 651ms
/iceberg/iceberg table engine/feature/row policies/combination #70 OK 748ms
/iceberg/iceberg table engine/feature/row policies/combination #71 OK 577ms
/iceberg/iceberg table engine/feature/row policies/combination #72 OK 730ms
/iceberg/iceberg table engine/feature/row policies/combination #73 OK 653ms
/iceberg/iceberg table engine/feature/row policies/combination #74 OK 710ms
/iceberg/iceberg table engine/feature/row policies/combination #75 OK 671ms
/iceberg/iceberg table engine/feature/row policies/combination #76 OK 628ms
/iceberg/iceberg table engine/feature/row policies/combination #77 OK 654ms
/iceberg/iceberg table engine/feature/row policies/combination #78 OK 590ms
/iceberg/iceberg table engine/feature/row policies/combination #79 OK 707ms
/iceberg/iceberg table engine/feature/row policies/combination #80 OK 718ms
/iceberg/iceberg table engine/feature/row policies/combination #81 OK 696ms
/iceberg/iceberg table engine/feature/row policies/combination #82 OK 554ms
/iceberg/iceberg table engine/feature/row policies/combination #83 OK 668ms
/iceberg/iceberg table engine/feature/row policies/combination #84 OK 639ms
/iceberg/iceberg table engine/feature/row policies/combination #85 OK 686ms
/iceberg/iceberg table engine/feature/row policies/combination #86 OK 591ms
/iceberg/iceberg table engine/feature/row policies/combination #87 OK 725ms
/iceberg/iceberg table engine/feature/row policies/combination #88 OK 733ms
/iceberg/iceberg table engine/feature/row policies/combination #89 OK 719ms
/iceberg/iceberg table engine/feature/row policies/combination #90 OK 631ms
/iceberg/iceberg table engine/feature/row policies/combination #91 OK 581ms
/iceberg/iceberg table engine/feature/row policies/combination #92 OK 671ms
/iceberg/iceberg table engine/feature/row policies/combination #93 OK 702ms
/iceberg/iceberg table engine/feature/row policies/combination #94 OK 574ms
/iceberg/iceberg table engine/feature/row policies/combination #95 OK 668ms
/iceberg/iceberg table engine/feature/row policies/combination #96 OK 718ms
/iceberg/iceberg table engine/feature/row policies/combination #97 OK 644ms
/iceberg/iceberg table engine/feature/row policies/combination #98 OK 651ms
/iceberg/iceberg table engine/feature/row policies/combination #99 OK 670ms
/iceberg/iceberg table engine/feature/row policies/combination #100 OK 651ms
/iceberg/iceberg table engine/feature/row policies/combination #101 OK 693ms
/iceberg/iceberg table engine/feature/row policies/combination #102 OK 702ms
/iceberg/iceberg table engine/feature/row policies/combination #103 OK 738ms
/iceberg/iceberg table engine/feature/row policies/combination #104 OK 727ms
/iceberg/iceberg table engine/feature/row policies/combination #105 OK 590ms
/iceberg/iceberg table engine/feature/row policies/combination #106 OK 746ms
/iceberg/iceberg table engine/feature/row policies/combination #107 OK 578ms
/iceberg/iceberg table engine/feature/row policies/combination #108 OK 605ms
/iceberg/iceberg table engine/feature/row policies/combination #109 OK 589ms
/iceberg/iceberg table engine/feature/row policies/combination #110 OK 625ms
/iceberg/iceberg table engine/feature/row policies/combination #111 OK 571ms
/iceberg/iceberg table engine/feature/row policies/combination #112 OK 577ms
/iceberg/iceberg table engine/feature/row policies/combination #113 OK 718ms
/iceberg/iceberg table engine/feature/row policies/combination #114 OK 584ms
/iceberg/iceberg table engine/feature/row policies/combination #115 OK 670ms
/iceberg/iceberg table engine/feature/row policies/combination #116 OK 730ms
/iceberg/iceberg table engine/feature/row policies/combination #117 OK 668ms
/iceberg/iceberg table engine/feature/row policies/combination #118 OK 581ms
/iceberg/iceberg table engine/feature/row policies/combination #119 OK 725ms
/iceberg/iceberg table engine/feature/row policies/combination #120 OK 713ms
/iceberg/iceberg table engine/feature/row policies/combination #121 OK 691ms
/iceberg/iceberg table engine/feature/row policies/combination #122 OK 686ms
/iceberg/iceberg table engine/feature/row policies/combination #123 OK 749ms
/iceberg/iceberg table engine/feature/row policies/combination #124 OK 710ms
/iceberg/iceberg table engine/feature/row policies/combination #125 OK 708ms
/iceberg/iceberg table engine/feature/row policies/combination #126 OK 743ms
/iceberg/iceberg table engine/feature/row policies/combination #127 OK 679ms
/iceberg/iceberg table engine/feature/row policies/combination #128 OK 670ms
/iceberg/iceberg table engine/feature/row policies/combination #129 OK 715ms
/iceberg/iceberg table engine/feature/row policies/combination #130 OK 635ms
/iceberg/iceberg table engine/feature/row policies/combination #131 OK 733ms
/iceberg/iceberg table engine/feature/row policies/combination #132 OK 631ms
/iceberg/iceberg table engine/feature/row policies/combination #133 OK 749ms
/iceberg/iceberg table engine/feature/row policies/combination #134 OK 747ms
/iceberg/iceberg table engine/feature/row policies/combination #135 OK 598ms
/iceberg/iceberg table engine/feature/row policies/combination #136 OK 719ms
/iceberg/iceberg table engine/feature/row policies/combination #137 OK 644ms
/iceberg/iceberg table engine/feature/row policies/combination #138 OK 741ms
/iceberg/iceberg table engine/feature/row policies/combination #139 OK 657ms
/iceberg/iceberg table engine/feature/row policies/combination #140 OK 646ms
/iceberg/iceberg table engine/feature/row policies/combination #141 OK 744ms
/iceberg/iceberg table engine/feature/row policies/combination #142 OK 656ms
/iceberg/iceberg table engine/feature/row policies/combination #143 OK 662ms
/iceberg/iceberg table engine/feature/row policies/combination #144 OK 720ms
/iceberg/iceberg table engine/feature/row policies/combination #145 OK 664ms
/iceberg/iceberg table engine/feature/row policies/combination #146 OK 669ms
/iceberg/iceberg table engine/feature/row policies/combination #147 OK 711ms
/iceberg/iceberg table engine/feature/row policies/combination #148 OK 660ms
/iceberg/iceberg table engine/feature/row policies/combination #149 OK 715ms
/iceberg/iceberg table engine/feature/row policies/combination #150 OK 574ms
/iceberg/iceberg table engine/feature/row policies/combination #151 OK 646ms
/iceberg/iceberg table engine/feature/row policies/combination #152 OK 626ms
/iceberg/iceberg table engine/feature/row policies/combination #153 OK 652ms
/iceberg/iceberg table engine/feature/row policies/combination #154 OK 676ms
/iceberg/iceberg table engine/feature/row policies/combination #155 OK 763ms
/iceberg/iceberg table engine/feature/row policies/combination #156 OK 732ms
/iceberg/iceberg table engine/feature/row policies/combination #157 OK 710ms
/iceberg/iceberg table engine/feature/row policies/combination #158 OK 684ms
/iceberg/iceberg table engine/feature/row policies/combination #159 OK 690ms
/iceberg/iceberg table engine/feature/row policies/combination #160 OK 675ms
/iceberg/iceberg table engine/feature/row policies/combination #161 OK 572ms
/iceberg/iceberg table engine/feature/row policies/combination #162 OK 720ms
/iceberg/iceberg table engine/feature/row policies/combination #163 OK 742ms
/iceberg/iceberg table engine/feature/row policies/combination #164 OK 654ms
/iceberg/iceberg table engine/feature/row policies/combination #165 OK 717ms
/iceberg/iceberg table engine/feature/row policies/combination #166 OK 641ms
/iceberg/iceberg table engine/feature/row policies/combination #167 OK 567ms
/iceberg/iceberg table engine/feature/row policies/combination #168 OK 636ms
/iceberg/iceberg table engine/feature/row policies/combination #169 OK 573ms
/iceberg/iceberg table engine/feature/row policies/combination #170 OK 696ms
/iceberg/iceberg table engine/feature/row policies/combination #171 OK 658ms
/iceberg/iceberg table engine/feature/row policies/combination #172 OK 669ms
/iceberg/iceberg table engine/feature/row policies/combination #173 OK 717ms
/iceberg/iceberg table engine/feature/row policies/combination #174 OK 722ms
/iceberg/iceberg table engine/feature/row policies/combination #175 OK 639ms
/iceberg/iceberg table engine/feature/row policies/combination #176 OK 580ms
/iceberg/iceberg table engine/feature/row policies/combination #177 OK 724ms
/iceberg/iceberg table engine/feature/row policies/combination #178 OK 594ms
/iceberg/iceberg table engine/feature/row policies/combination #179 OK 615ms
/iceberg/iceberg table engine/feature/row policies/combination #180 OK 680ms
/iceberg/iceberg table engine/feature/row policies/combination #181 OK 633ms
/iceberg/iceberg table engine/feature/row policies/combination #182 OK 723ms
/iceberg/iceberg table engine/feature/row policies/combination #183 OK 701ms
/iceberg/iceberg table engine/feature/row policies/combination #184 OK 641ms
/iceberg/iceberg table engine/feature/row policies/combination #185 OK 644ms
/iceberg/iceberg table engine/feature/row policies/combination #186 OK 597ms
/iceberg/iceberg table engine/feature/row policies/combination #187 OK 682ms
/iceberg/iceberg table engine/feature/row policies/combination #188 OK 651ms
/iceberg/iceberg table engine/feature/row policies/combination #189 OK 647ms
/iceberg/iceberg table engine/feature/row policies/combination #190 OK 642ms
/iceberg/iceberg table engine/feature/row policies/combination #191 OK 687ms
/iceberg/iceberg table engine/feature/row policies/combination #192 OK 658ms
/iceberg/iceberg table engine/feature/row policies/combination #193 OK 654ms
/iceberg/iceberg table engine/feature/row policies/combination #194 OK 708ms
/iceberg/iceberg table engine/feature/row policies/combination #195 OK 563ms
/iceberg/iceberg table engine/feature/row policies/combination #196 OK 663ms
/iceberg/iceberg table engine/feature/row policies/combination #197 OK 699ms
/iceberg/iceberg table engine/feature/row policies/combination #198 OK 715ms
/iceberg/iceberg table engine/feature/row policies/combination #199 OK 705ms
/iceberg/iceberg table engine/feature/row policies/combination #200 OK 647ms
/iceberg/iceberg table engine/feature/row policies/combination #201 OK 684ms
/iceberg/iceberg table engine/feature/row policies/combination #202 OK 688ms
/iceberg/iceberg table engine/feature/row policies/combination #203 OK 735ms
/iceberg/iceberg table engine/feature/row policies/combination #204 OK 765ms
/iceberg/iceberg table engine/feature/row policies/combination #205 OK 757ms
/iceberg/iceberg table engine/feature/row policies/combination #206 OK 682ms
/iceberg/iceberg table engine/feature/row policies/combination #207 OK 667ms
/iceberg/iceberg table engine/feature/row policies/combination #208 OK 670ms
/iceberg/iceberg table engine/feature/row policies/combination #209 OK 766ms
/iceberg/iceberg table engine/feature/row policies/combination #210 OK 676ms
/iceberg/iceberg table engine/feature/row policies/combination #211 OK 670ms
/iceberg/iceberg table engine/feature/row policies/combination #212 OK 735ms
/iceberg/iceberg table engine/feature/row policies/combination #213 OK 576ms
/iceberg/iceberg table engine/feature/row policies/combination #214 OK 733ms
/iceberg/iceberg table engine/feature/row policies/combination #215 OK 728ms
/iceberg/iceberg table engine/feature/row policies/combination #216 OK 712ms
/iceberg/iceberg table engine/feature/row policies/combination #217 OK 689ms
/iceberg/iceberg table engine/feature/row policies/combination #218 OK 652ms
/iceberg/iceberg table engine/feature/row policies/combination #219 OK 714ms
/iceberg/iceberg table engine/feature/row policies/combination #220 OK 687ms
/iceberg/iceberg table engine/feature/row policies/combination #221 OK 595ms
/iceberg/iceberg table engine/feature/row policies/combination #222 OK 651ms
/iceberg/iceberg table engine/feature/row policies/combination #223 OK 710ms
/iceberg/iceberg table engine/feature/row policies/combination #224 OK 922ms
/iceberg/iceberg table engine/feature/row policies/combination #225 OK 592ms
/iceberg/iceberg table engine/feature/row policies/combination #226 OK 616ms
/iceberg/iceberg table engine/feature/row policies/combination #227 OK 595ms
/iceberg/iceberg table engine/feature/row policies/combination #228 OK 716ms
/iceberg/iceberg table engine/feature/row policies/combination #229 OK 714ms
/iceberg/iceberg table engine/feature/row policies/combination #230 OK 688ms
/iceberg/iceberg table engine/feature/row policies/combination #231 OK 731ms
/iceberg/iceberg table engine/feature/row policies/combination #232 OK 584ms
/iceberg/iceberg table engine/feature/row policies/combination #233 OK 686ms
/iceberg/iceberg table engine/feature/row policies/combination #234 OK 640ms
/iceberg/iceberg table engine/feature/row policies/combination #235 OK 719ms
/iceberg/iceberg table engine/feature/row policies/combination #236 OK 697ms
/iceberg/iceberg table engine/feature/row policies/combination #237 OK 735ms
/iceberg/iceberg table engine/feature/row policies/combination #238 OK 638ms
/iceberg/iceberg table engine/feature/row policies/combination #239 OK 635ms
/iceberg/iceberg table engine/feature/row policies/combination #240 OK 670ms
/iceberg/iceberg table engine/feature/row policies/combination #241 OK 554ms
/iceberg/iceberg table engine/feature/row policies/combination #242 OK 646ms
/iceberg/iceberg table engine/feature/row policies/combination #243 OK 567ms
/iceberg/iceberg table engine/feature/row policies/combination #244 OK 697ms
/iceberg/iceberg table engine/feature/row policies/combination #245 OK 566ms
/iceberg/iceberg table engine/feature/row policies/combination #246 OK 766ms
/iceberg/iceberg table engine/feature/row policies/combination #247 OK 719ms
/iceberg/iceberg table engine/feature/row policies/combination #248 OK 650ms
/iceberg/iceberg table engine/feature/row policies/combination #249 OK 721ms
/iceberg/iceberg table engine/feature/row policies/combination #250 OK 710ms
/iceberg/iceberg table engine/feature/row policies/combination #251 OK 731ms
/iceberg/iceberg table engine/feature/row policies/combination #252 OK 690ms
/iceberg/iceberg table engine/feature/row policies/combination #253 OK 705ms
/iceberg/iceberg table engine/feature/row policies/combination #254 OK 684ms
/iceberg/iceberg table engine/feature/row policies/combination #255 OK 713ms
/iceberg/iceberg table engine/feature/row policies/combination #256 OK 724ms
/iceberg/iceberg table engine/feature/row policies/combination #257 OK 672ms
/iceberg/iceberg table engine/feature/row policies/combination #258 OK 674ms
/iceberg/iceberg table engine/feature/row policies/combination #259 OK 716ms
/iceberg/iceberg table engine/feature/row policies/combination #260 OK 572ms
/iceberg/iceberg table engine/feature/row policies/combination #261 OK 712ms
/iceberg/iceberg table engine/feature/row policies/combination #262 OK 701ms
/iceberg/iceberg table engine/feature/row policies/combination #263 OK 702ms
/iceberg/iceberg table engine/feature/row policies/combination #264 OK 720ms
/iceberg/iceberg table engine/feature/row policies/combination #265 OK 636ms
/iceberg/iceberg table engine/feature/row policies/combination #266 OK 633ms
/iceberg/iceberg table engine/feature/row policies/combination #267 OK 567ms
/iceberg/iceberg table engine/feature/row policies/combination #268 OK 703ms
/iceberg/iceberg table engine/feature/row policies/combination #269 OK 578ms
/iceberg/iceberg table engine/feature/row policies/combination #270 OK 644ms
/iceberg/iceberg table engine/feature/row policies/combination #271 OK 673ms
/iceberg/iceberg table engine/feature/row policies/combination #272 OK 672ms
/iceberg/iceberg table engine/feature/row policies/combination #273 OK 736ms
/iceberg/iceberg table engine/feature/row policies/combination #274 OK 746ms
/iceberg/iceberg table engine/feature/row policies/combination #275 OK 737ms
/iceberg/iceberg table engine/feature/row policies/combination #276 OK 754ms
/iceberg/iceberg table engine/feature/row policies/combination #277 OK 620ms
/iceberg/iceberg table engine/feature/row policies/combination #278 OK 657ms
/iceberg/iceberg table engine/feature/row policies/combination #279 OK 646ms
/iceberg/iceberg table engine/feature/row policies/combination #280 OK 675ms
/iceberg/iceberg table engine/feature/row policies/combination #281 OK 671ms
/iceberg/iceberg table engine/feature/row policies/combination #282 OK 630ms
/iceberg/iceberg table engine/feature/row policies/combination #283 OK 569ms
/iceberg/iceberg table engine/feature/row policies/combination #284 OK 576ms
/iceberg/iceberg table engine/feature/row policies/combination #285 OK 712ms
/iceberg/iceberg table engine/feature/row policies/combination #286 OK 699ms
/iceberg/iceberg table engine/feature/row policies/combination #287 OK 663ms
/iceberg/iceberg table engine/feature/row policies/combination #288 OK 647ms
/iceberg/iceberg table engine/feature/row policies/combination #289 OK 700ms
/iceberg/iceberg table engine/feature/row policies/combination #290 OK 711ms
/iceberg/iceberg table engine/feature/row policies/combination #291 OK 725ms
/iceberg/iceberg table engine/feature/row policies/combination #292 OK 582ms
/iceberg/iceberg table engine/feature/row policies/combination #293 OK 556ms
/iceberg/iceberg table engine/feature/row policies/combination #294 OK 586ms
/iceberg/iceberg table engine/feature/row policies/combination #295 OK 741ms
/iceberg/iceberg table engine/feature/row policies/combination #296 OK 599ms
/iceberg/iceberg table engine/feature/row policies/combination #297 OK 765ms
/iceberg/iceberg table engine/feature/row policies/combination #298 OK 609ms
/iceberg/iceberg table engine/feature/row policies/combination #299 OK 602ms
/iceberg/iceberg table engine/feature/row policies/combination #300 OK 741ms
/iceberg/iceberg table engine/feature/row policies/combination #301 OK 717ms
/iceberg/iceberg table engine/feature/row policies/combination #302 OK 639ms
/iceberg/iceberg table engine/feature/row policies/combination #303 OK 654ms
/iceberg/iceberg table engine/feature/row policies/combination #304 OK 701ms
/iceberg/iceberg table engine/feature/row policies/combination #305 OK 640ms
/iceberg/iceberg table engine/feature/row policies/combination #306 OK 581ms
/iceberg/iceberg table engine/feature/row policies/combination #307 OK 721ms
/iceberg/iceberg table engine/feature/row policies/combination #308 OK 720ms
/iceberg/iceberg table engine/feature/row policies/combination #309 OK 633ms
/iceberg/iceberg table engine/feature/row policies/combination #310 OK 587ms
/iceberg/iceberg table engine/feature/row policies/combination #311 OK 712ms
/iceberg/iceberg table engine/feature/row policies/combination #312 OK 698ms
/iceberg/iceberg table engine/feature/row policies/combination #313 OK 748ms
/iceberg/iceberg table engine/feature/row policies/combination #314 OK 696ms
/iceberg/iceberg table engine/feature/row policies/combination #315 OK 695ms
/iceberg/iceberg table engine/feature/row policies/combination #316 OK 604ms
/iceberg/iceberg table engine/feature/row policies/combination #317 OK 586ms
/iceberg/iceberg table engine/feature/row policies/combination #318 OK 743ms
/iceberg/iceberg table engine/feature/row policies/combination #319 OK 714ms
/iceberg/iceberg table engine/feature/row policies/combination #320 OK 712ms
/iceberg/iceberg table engine/feature/row policies/combination #321 OK 642ms
/iceberg/iceberg table engine/feature/row policies/combination #322 OK 633ms
/iceberg/iceberg table engine/feature/row policies/combination #323 OK 642ms
/iceberg/iceberg table engine/feature/row policies/combination #324 OK 585ms
/iceberg/iceberg table engine/feature/row policies/combination #325 OK 561ms
/iceberg/iceberg table engine/feature/row policies/combination #326 OK 702ms
/iceberg/iceberg table engine/feature/row policies/combination #327 OK 592ms
/iceberg/iceberg table engine/feature/row policies/combination #328 OK 753ms
/iceberg/iceberg table engine/feature/row policies/combination #329 OK 657ms
/iceberg/iceberg table engine/feature/row policies/combination #330 OK 571ms
/iceberg/iceberg table engine/feature/row policies/combination #331 OK 708ms
/iceberg/iceberg table engine/feature/row policies/combination #332 OK 691ms
/iceberg/iceberg table engine/feature/row policies/combination #333 OK 696ms
/iceberg/iceberg table engine/feature/row policies/combination #334 OK 660ms
/iceberg/iceberg table engine/feature/row policies/combination #335 OK 703ms
/iceberg/iceberg table engine/feature/row policies/combination #336 OK 571ms
/iceberg/iceberg table engine/feature/row policies/combination #337 OK 722ms
/iceberg/iceberg table engine/feature/row policies/combination #338 OK 650ms
/iceberg/iceberg table engine/feature/row policies/combination #339 OK 712ms
/iceberg/iceberg table engine/feature/row policies/combination #340 OK 577ms
/iceberg/iceberg table engine/feature/row policies/combination #341 OK 572ms
/iceberg/iceberg table engine/feature/row policies/combination #342 OK 685ms
/iceberg/iceberg table engine/feature/row policies/combination #343 OK 602ms
/iceberg/iceberg table engine/feature/row policies/combination #344 OK 578ms
/iceberg/iceberg table engine/feature/row policies/combination #345 OK 569ms
/iceberg/iceberg table engine/feature/row policies/combination #346 OK 580ms
/iceberg/iceberg table engine/feature/row policies/combination #347 OK 639ms
/iceberg/iceberg table engine/feature/row policies/combination #348 OK 634ms
/iceberg/iceberg table engine/feature/row policies/combination #349 OK 705ms
/iceberg/iceberg table engine/feature/row policies/combination #350 OK 725ms
/iceberg/iceberg table engine/feature/row policies/combination #351 OK 552ms
/iceberg/iceberg table engine/feature/row policies/combination #352 OK 636ms
/iceberg/iceberg table engine/feature/row policies/combination #353 OK 698ms
/iceberg/iceberg table engine/feature/row policies/combination #354 OK 707ms
/iceberg/iceberg table engine/feature/row policies/combination #355 OK 687ms
/iceberg/iceberg table engine/feature/row policies/combination #356 OK 631ms
/iceberg/iceberg table engine/feature/row policies/combination #357 OK 712ms
/iceberg/iceberg table engine/feature/row policies/combination #358 OK 637ms
/iceberg/iceberg table engine/feature/row policies/combination #359 OK 714ms
/iceberg/iceberg table engine/feature/row policies/combination #360 OK 700ms
/iceberg/iceberg table engine/feature/row policies/combination #361 OK 700ms
/iceberg/iceberg table engine/feature/row policies/combination #362 OK 571ms
/iceberg/iceberg table engine/feature/row policies/combination #363 OK 686ms
/iceberg/iceberg table engine/feature/row policies/combination #364 OK 633ms
/iceberg/iceberg table engine/feature/row policies/combination #365 OK 704ms
/iceberg/iceberg table engine/feature/row policies/combination #366 OK 710ms
/iceberg/iceberg table engine/feature/row policies/combination #367 OK 657ms
/iceberg/iceberg table engine/feature/row policies/combination #368 OK 669ms
/iceberg/iceberg table engine/feature/row policies/combination #369 OK 719ms
/iceberg/iceberg table engine/feature/row policies/combination #370 OK 700ms
/iceberg/iceberg table engine/feature/row policies/combination #371 OK 706ms
/iceberg/iceberg table engine/feature/row policies/combination #372 OK 711ms
/iceberg/iceberg table engine/feature/row policies/combination #373 OK 568ms
/iceberg/iceberg table engine/feature/row policies/combination #374 OK 570ms
/iceberg/iceberg table engine/feature/row policies/combination #375 OK 706ms
/iceberg/iceberg table engine/feature/row policies/combination #376 OK 657ms
/iceberg/iceberg table engine/feature/row policies/combination #377 OK 577ms
/iceberg/iceberg table engine/feature/row policies/combination #378 OK 573ms
/iceberg/iceberg table engine/feature/row policies/combination #379 OK 704ms
/iceberg/iceberg table engine/feature/row policies/combination #380 OK 700ms
/iceberg/iceberg table engine/feature/row policies/combination #381 OK 723ms
/iceberg/iceberg table engine/feature/row policies/combination #382 OK 738ms
/iceberg/iceberg table engine/feature/row policies/combination #383 OK 643ms
/iceberg/iceberg table engine/feature/row policies/combination #384 OK 716ms
/iceberg/iceberg table engine/feature/row policies/combination #385 OK 692ms
/iceberg/iceberg table engine/feature/row policies/combination #386 OK 653ms
/iceberg/iceberg table engine/feature/row policies/combination #387 OK 720ms
/iceberg/iceberg table engine/feature/row policies/combination #388 OK 733ms
/iceberg/iceberg table engine/feature/row policies/combination #389 OK 760ms
/iceberg/iceberg table engine/feature/row policies/combination #390 OK 680ms
/iceberg/iceberg table engine/feature/row policies/combination #391 OK 575ms
/iceberg/iceberg table engine/feature/row policies/combination #392 OK 733ms
/iceberg/iceberg table engine/feature/row policies/combination #393 OK 602ms
/iceberg/iceberg table engine/feature/row policies/combination #394 OK 727ms
/iceberg/iceberg table engine/feature/row policies/combination #395 OK 655ms
/iceberg/iceberg table engine/feature/row policies/combination #396 OK 631ms
/iceberg/iceberg table engine/feature/row policies/combination #397 OK 673ms
/iceberg/iceberg table engine/feature/row policies/combination #398 OK 565ms
/iceberg/iceberg table engine/feature/row policies/combination #399 OK 579ms
/iceberg/iceberg table engine/feature/row policies/combination #400 OK 692ms
/iceberg/iceberg table engine/feature/row policies/combination #401 OK 711ms
/iceberg/iceberg table engine/feature/row policies/combination #402 OK 706ms
/iceberg/iceberg table engine/feature/row policies/combination #403 OK 566ms
/iceberg/iceberg table engine/feature/row policies/combination #404 OK 718ms
/iceberg/iceberg table engine/feature/row policies/combination #405 OK 634ms
/iceberg/iceberg table engine/feature/row policies/combination #406 OK 651ms
/iceberg/iceberg table engine/feature/row policies/combination #407 OK 668ms
/iceberg/iceberg table engine/feature/row policies/combination #408 OK 715ms
/iceberg/iceberg table engine/feature/row policies/combination #409 OK 680ms
/iceberg/iceberg table engine/feature/row policies/combination #410 OK 711ms
/iceberg/iceberg table engine/feature/row policies/combination #411 OK 639ms
/iceberg/iceberg table engine/feature/row policies/combination #412 OK 638ms
/iceberg/iceberg table engine/feature/row policies/combination #413 OK 576ms
/iceberg/iceberg table engine/feature/row policies/combination #414 OK 703ms
/iceberg/iceberg table engine/feature/row policies/combination #415 OK 633ms
/iceberg/iceberg table engine/feature/row policies/combination #416 OK 642ms
/iceberg/iceberg table engine/feature/row policies/combination #417 OK 694ms
/iceberg/iceberg table engine/feature/row policies/combination #418 OK 719ms
/iceberg/iceberg table engine/feature/row policies/combination #419 OK 664ms
/iceberg/iceberg table engine/feature/row policies/combination #420 OK 626ms
/iceberg/iceberg table engine/feature/row policies/combination #421 OK 577ms
/iceberg/iceberg table engine/feature/row policies/combination #422 OK 567ms
/iceberg/iceberg table engine/feature/row policies/combination #423 OK 655ms
/iceberg/iceberg table engine/feature/row policies/combination #424 OK 702ms
/iceberg/iceberg table engine/feature/row policies/combination #425 OK 641ms
/iceberg/iceberg table engine/feature/row policies/combination #426 OK 652ms
/iceberg/iceberg table engine/feature/row policies/combination #427 OK 656ms
/iceberg/iceberg table engine/feature/row policies/combination #428 OK 573ms
/iceberg/iceberg table engine/feature/row policies/combination #429 OK 736ms
/iceberg/iceberg table engine/feature/row policies/combination #430 OK 735ms
/iceberg/iceberg table engine/feature/row policies/combination #431 OK 727ms
/iceberg/iceberg table engine/feature/row policies/combination #432 OK 649ms
/iceberg/iceberg table engine/feature/row policies/combination #433 OK 727ms
/iceberg/iceberg table engine/feature/row policies/combination #434 OK 569ms
/iceberg/iceberg table engine/feature/row policies/combination #435 OK 628ms
/iceberg/iceberg table engine/feature/row policies/combination #436 OK 696ms
/iceberg/iceberg table engine/feature/row policies/combination #437 OK 656ms
/iceberg/iceberg table engine/feature/row policies/combination #438 OK 576ms
/iceberg/iceberg table engine/feature/row policies/combination #439 OK 703ms
/iceberg/iceberg table engine/feature/row policies/combination #440 OK 716ms
/iceberg/iceberg table engine/feature/row policies/combination #441 OK 562ms
/iceberg/iceberg table engine/feature/row policies/combination #442 OK 692ms
/iceberg/iceberg table engine/feature/row policies/combination #443 OK 598ms
/iceberg/iceberg table engine/feature/row policies/combination #444 OK 702ms
/iceberg/iceberg table engine/feature/row policies/combination #445 OK 573ms
/iceberg/iceberg table engine/feature/row policies/combination #446 OK 705ms
/iceberg/iceberg table engine/feature/row policies/combination #447 OK 684ms
/iceberg/iceberg table engine/feature/row policies/combination #448 OK 639ms
/iceberg/iceberg table engine/feature/row policies/combination #449 OK 697ms
/iceberg/iceberg table engine/feature/row policies/combination #450 OK 696ms
/iceberg/iceberg table engine/feature/row policies/combination #451 OK 710ms
/iceberg/iceberg table engine/feature/row policies/combination #452 OK 615ms
/iceberg/iceberg table engine/feature/row policies/combination #453 OK 617ms
/iceberg/iceberg table engine/feature/row policies/combination #454 OK 600ms
/iceberg/iceberg table engine/feature/row policies/combination #455 OK 705ms
/iceberg/iceberg table engine/feature/row policies/combination #456 OK 710ms
/iceberg/iceberg table engine/feature/row policies/combination #457 OK 573ms
/iceberg/iceberg table engine/feature/row policies/combination #458 OK 586ms
/iceberg/iceberg table engine/feature/row policies/combination #459 OK 717ms
/iceberg/iceberg table engine/feature/row policies/combination #460 OK 720ms
/iceberg/iceberg table engine/feature/row policies/combination #461 OK 687ms
/iceberg/iceberg table engine/feature/row policies/combination #462 OK 699ms
/iceberg/iceberg table engine/feature/row policies/combination #463 OK 588ms
/iceberg/iceberg table engine/feature/row policies/combination #464 OK 582ms
/iceberg/iceberg table engine/feature/row policies/combination #465 OK 583ms
/iceberg/iceberg table engine/feature/row policies/combination #466 OK 641ms
/iceberg/iceberg table engine/feature/row policies/combination #467 OK 654ms
/iceberg/iceberg table engine/feature/row policies/combination #468 OK 640ms
/iceberg/iceberg table engine/feature/row policies/combination #469 OK 633ms
/iceberg/iceberg table engine/feature/row policies/combination #470 OK 652ms
/iceberg/iceberg table engine/feature/row policies/combination #471 OK 646ms
/iceberg/iceberg table engine/feature/row policies/combination #472 OK 657ms
/iceberg/iceberg table engine/feature/row policies/combination #473 OK 719ms
/iceberg/iceberg table engine/feature/row policies/combination #474 OK 574ms
/iceberg/iceberg table engine/feature/row policies/combination #475 OK 713ms
/iceberg/iceberg table engine/feature/row policies/combination #476 OK 586ms
/iceberg/iceberg table engine/feature/row policies/combination #477 OK 557ms
/iceberg/iceberg table engine/feature/row policies/combination #478 OK 695ms
/iceberg/iceberg table engine/feature/row policies/combination #479 OK 709ms
/iceberg/iceberg table engine/feature/row policies/combination #480 OK 625ms
/iceberg/iceberg table engine/feature/row policies/combination #481 OK 567ms
/iceberg/iceberg table engine/feature/row policies/combination #482 OK 588ms
/iceberg/iceberg table engine/feature/row policies/combination #483 OK 668ms
/iceberg/iceberg table engine/feature/row policies/combination #484 OK 731ms
/iceberg/iceberg table engine/feature/row policies/combination #485 OK 566ms
/iceberg/iceberg table engine/feature/row policies/combination #486 OK 728ms
/iceberg/iceberg table engine/feature/row policies/combination #487 OK 711ms
/iceberg/iceberg table engine/feature/row policies/combination #488 OK 728ms
/iceberg/iceberg table engine/feature/row policies/combination #489 OK 752ms
/iceberg/iceberg table engine/feature/row policies/combination #490 OK 571ms
/iceberg/iceberg table engine/feature/row policies/combination #491 OK 711ms
/iceberg/iceberg table engine/feature/row policies/combination #492 OK 645ms
/iceberg/iceberg table engine/feature/row policies/combination #493 OK 678ms
/iceberg/iceberg table engine/feature/row policies/combination #494 OK 643ms
/iceberg/iceberg table engine/feature/row policies/combination #495 OK 566ms
/iceberg/iceberg table engine/feature/row policies/combination #496 OK 718ms
/iceberg/iceberg table engine/feature/row policies/combination #497 OK 647ms
/iceberg/iceberg table engine/feature/row policies/combination #498 OK 650ms
/iceberg/iceberg table engine/feature/row policies/combination #499 OK 568ms
/iceberg/iceberg table engine/feature/row policies/combination #500 OK 666ms
/iceberg/iceberg table engine/feature/row policies/combination #501 OK 709ms
/iceberg/iceberg table engine/feature/row policies/combination #502 OK 556ms
/iceberg/iceberg table engine/feature/row policies/combination #503 OK 717ms
/iceberg/iceberg table engine/feature/row policies/combination #504 OK 719ms
/iceberg/iceberg table engine/feature/row policies/combination #505 OK 695ms
/iceberg/iceberg table engine/feature/row policies/combination #506 OK 703ms
/iceberg/iceberg table engine/feature/row policies/combination #507 OK 645ms
/iceberg/iceberg table engine/feature/row policies/combination #508 OK 568ms
/iceberg/iceberg table engine/feature/row policies/combination #509 OK 639ms
/iceberg/iceberg table engine/feature/row policies/combination #510 OK 707ms
/iceberg/iceberg table engine/feature/row policies/combination #511 OK 695ms
/iceberg/iceberg table engine/feature/row policies/combination #512 OK 567ms
/iceberg/iceberg table engine/feature/row policies/combination #513 OK 640ms
/iceberg/iceberg table engine/feature/row policies/combination #514 OK 686ms
/iceberg/iceberg table engine/feature/row policies/combination #515 OK 656ms
/iceberg/iceberg table engine/feature/row policies/combination #516 OK 688ms
/iceberg/iceberg table engine/feature/row policies/combination #517 OK 726ms
/iceberg/iceberg table engine/feature/row policies/combination #518 OK 669ms
/iceberg/iceberg table engine/feature/row policies/combination #519 OK 692ms
/iceberg/iceberg table engine/feature/row policies/combination #520 OK 717ms
/iceberg/iceberg table engine/feature/row policies/combination #521 OK 563ms
/iceberg/iceberg table engine/feature/row policies/combination #522 OK 717ms
/iceberg/iceberg table engine/feature/row policies/combination #523 OK 697ms
/iceberg/iceberg table engine/feature/row policies/combination #524 OK 650ms
/iceberg/iceberg table engine/feature/row policies/combination #525 OK 591ms
/iceberg/iceberg table engine/feature/row policies/combination #526 OK 641ms
/iceberg/iceberg table engine/feature/row policies/combination #527 OK 696ms
/iceberg/iceberg table engine/feature/row policies/combination #528 OK 641ms
/iceberg/iceberg table engine/feature/row policies/combination #529 OK 721ms
/iceberg/iceberg table engine/feature/row policies/combination #530 OK 646ms
/iceberg/iceberg table engine/feature/row policies/combination #531 OK 696ms
/iceberg/iceberg table engine/feature/row policies/combination #532 OK 659ms
/iceberg/iceberg table engine/feature/row policies/combination #533 OK 680ms
/iceberg/iceberg table engine/feature/row policies/combination #534 OK 727ms
/iceberg/iceberg table engine/feature/row policies/combination #535 OK 601ms
/iceberg/iceberg table engine/feature/row policies/combination #536 OK 712ms
/iceberg/iceberg table engine/feature/row policies/combination #537 OK 706ms
/iceberg/iceberg table engine/feature/row policies/combination #538 OK 693ms
/iceberg/iceberg table engine/feature/row policies/combination #539 OK 703ms
/iceberg/iceberg table engine/feature/row policies/combination #540 OK 643ms
/iceberg/iceberg table engine/feature/row policies/combination #541 OK 722ms
/iceberg/iceberg table engine/feature/row policies/combination #542 OK 721ms
/iceberg/iceberg table engine/feature/row policies/combination #543 OK 639ms
/iceberg/iceberg table engine/feature/row policies/combination #544 OK 572ms
/iceberg/iceberg table engine/feature/row policies/combination #545 OK 568ms
/iceberg/iceberg table engine/feature/row policies/combination #546 OK 727ms
/iceberg/iceberg table engine/feature/row policies/combination #547 OK 695ms
/iceberg/iceberg table engine/feature/row policies/combination #548 OK 565ms
/iceberg/iceberg table engine/feature/row policies/combination #549 OK 657ms
/iceberg/iceberg table engine/feature/row policies/combination #550 OK 702ms
/iceberg/iceberg table engine/feature/row policies/combination #551 OK 575ms
/iceberg/iceberg table engine/feature/row policies/combination #552 OK 581ms
/iceberg/iceberg table engine/feature/row policies/combination #553 OK 625ms
/iceberg/iceberg table engine/feature/row policies/combination #554 OK 754ms
/iceberg/iceberg table engine/feature/row policies/combination #555 OK 571ms
/iceberg/iceberg table engine/feature/row policies/combination #556 OK 572ms
/iceberg/iceberg table engine/feature/row policies/combination #557 OK 572ms
/iceberg/iceberg table engine/feature/row policies/combination #558 OK 719ms
/iceberg/iceberg table engine/feature/row policies/combination #559 OK 635ms
/iceberg/iceberg table engine/feature/row policies/combination #560 OK 752ms
/iceberg/iceberg table engine/feature/row policies/combination #561 OK 741ms
/iceberg/iceberg table engine/feature/row policies/combination #562 OK 759ms
/iceberg/iceberg table engine/feature/row policies/combination #563 OK 637ms
/iceberg/iceberg table engine/feature/row policies/combination #564 OK 586ms
/iceberg/iceberg table engine/feature/row policies/combination #565 OK 718ms
/iceberg/iceberg table engine/feature/row policies/combination #566 OK 725ms
/iceberg/iceberg table engine/feature/row policies/combination #567 OK 643ms
/iceberg/iceberg table engine/feature/row policies/combination #568 OK 718ms
/iceberg/iceberg table engine/feature/row policies/combination #569 OK 687ms
/iceberg/iceberg table engine/feature/row policies/combination #570 OK 587ms
/iceberg/iceberg table engine/feature/row policies/combination #571 OK 587ms
/iceberg/iceberg table engine/feature/row policies/combination #572 OK 587ms
/iceberg/iceberg table engine/feature/row policies/combination #573 OK 665ms
/iceberg/iceberg table engine/feature/row policies/combination #574 OK 637ms
/iceberg/iceberg table engine/feature/row policies/combination #575 OK 719ms
/iceberg/iceberg table engine/feature/row policies/combination #576 OK 653ms
/iceberg/iceberg table engine/feature/row policies/combination #577 OK 670ms
/iceberg/iceberg table engine/feature/row policies/combination #578 OK 564ms
/iceberg/iceberg table engine/feature/row policies/combination #579 OK 637ms
/iceberg/iceberg table engine/feature/row policies/combination #580 OK 576ms
/iceberg/iceberg table engine/feature/row policies/combination #581 OK 571ms
/iceberg/iceberg table engine/feature/row policies/combination #582 OK 729ms
/iceberg/iceberg table engine/feature/row policies/combination #583 OK 630ms
/iceberg/iceberg table engine/feature/row policies/combination #584 OK 664ms
/iceberg/iceberg table engine/feature/row policies/combination #585 OK 717ms
/iceberg/iceberg table engine/feature/row policies/combination #586 OK 570ms
/iceberg/iceberg table engine/feature/row policies/combination #587 OK 724ms
/iceberg/iceberg table engine/feature/row policies/combination #588 OK 723ms
/iceberg/iceberg table engine/feature/row policies/combination #589 OK 735ms
/iceberg/iceberg table engine/feature/row policies/combination #590 OK 652ms
/iceberg/iceberg table engine/feature/row policies/combination #591 OK 576ms
/iceberg/iceberg table engine/feature/row policies/combination #592 OK 631ms
/iceberg/iceberg table engine/feature/row policies/combination #593 OK 658ms
/iceberg/iceberg table engine/feature/row policies/combination #594 OK 637ms
/iceberg/iceberg table engine/feature/row policies/combination #595 OK 649ms
/iceberg/iceberg table engine/feature/row policies/combination #596 OK 747ms
/iceberg/iceberg table engine/feature/row policies/combination #597 OK 656ms
/iceberg/iceberg table engine/feature/row policies/combination #598 OK 675ms
/iceberg/iceberg table engine/feature/row policies/combination #599 OK 638ms
/iceberg/iceberg table engine/feature/row policies/combination #600 OK 641ms
/iceberg/iceberg table engine/feature/row policies/combination #601 OK 698ms
/iceberg/iceberg table engine/feature/row policies/combination #602 OK 704ms
/iceberg/iceberg table engine/feature/row policies/combination #603 OK 674ms
/iceberg/iceberg table engine/feature/row policies/combination #604 OK 607ms
/iceberg/iceberg table engine/feature/row policies/combination #605 OK 625ms
/iceberg/iceberg table engine/feature/row policies/combination #606 OK 567ms
/iceberg/iceberg table engine/feature/row policies/combination #607 OK 617ms
/iceberg/iceberg table engine/feature/row policies/combination #608 OK 624ms
/iceberg/iceberg table engine/feature/row policies/combination #609 OK 690ms
/iceberg/iceberg table engine/feature/row policies/combination #610 OK 715ms
/iceberg/iceberg table engine/feature/row policies/combination #611 OK 637ms
/iceberg/iceberg table engine/feature/row policies/combination #612 OK 659ms
/iceberg/iceberg table engine/feature/row policies/combination #613 OK 559ms
/iceberg/iceberg table engine/feature/row policies/combination #614 OK 638ms
/iceberg/iceberg table engine/feature/row policies/combination #615 OK 575ms
/iceberg/iceberg table engine/feature/row policies/combination #616 OK 732ms
/iceberg/iceberg table engine/feature/row policies/combination #617 OK 598ms
/iceberg/iceberg table engine/feature/row policies/combination #618 OK 665ms
/iceberg/iceberg table engine/feature/row policies/combination #619 OK 574ms
/iceberg/iceberg table engine/feature/row policies/combination #620 OK 671ms
/iceberg/iceberg table engine/feature/row policies/combination #621 OK 704ms
/iceberg/iceberg table engine/feature/row policies/combination #622 OK 644ms
/iceberg/iceberg table engine/feature/row policies/combination #623 OK 567ms
/iceberg/iceberg table engine/feature/row policies/combination #624 OK 706ms
/iceberg/iceberg table engine/feature/row policies/combination #625 OK 573ms
/iceberg/iceberg table engine/feature/row policies/combination #626 OK 587ms
/iceberg/iceberg table engine/feature/row policies/combination #627 OK 676ms
/iceberg/iceberg table engine/feature/row policies/combination #628 OK 582ms
/iceberg/iceberg table engine/feature/row policies/combination #629 OK 707ms
/iceberg/iceberg table engine/feature/row policies/combination #630 OK 712ms
/iceberg/iceberg table engine/feature/row policies/combination #631 OK 576ms
/iceberg/iceberg table engine/feature/row policies/combination #632 OK 692ms
/iceberg/iceberg table engine/feature/row policies/combination #633 OK 802ms
/iceberg/iceberg table engine/feature/row policies/combination #634 OK 705ms
/iceberg/iceberg table engine/feature/row policies/combination #635 OK 711ms
/iceberg/iceberg table engine/feature/row policies/combination #636 OK 695ms
/iceberg/iceberg table engine/feature/row policies/combination #637 OK 719ms
/iceberg/iceberg table engine/feature/row policies/combination #638 OK 738ms
/iceberg/iceberg table engine/feature/row policies/combination #639 OK 656ms
/iceberg/iceberg table engine/feature/row policies/combination #640 OK 657ms
/iceberg/iceberg table engine/feature/row policies/combination #641 OK 582ms
/iceberg/iceberg table engine/feature/row policies/combination #642 OK 677ms
/iceberg/iceberg table engine/feature/row policies/combination #643 OK 649ms
/iceberg/iceberg table engine/feature/row policies/combination #644 OK 588ms
/iceberg/iceberg table engine/feature/row policies/combination #645 OK 682ms
/iceberg/iceberg table engine/feature/row policies/combination #646 OK 572ms
/iceberg/iceberg table engine/feature/row policies/combination #647 OK 664ms
/iceberg/iceberg table engine/feature/row policies/combination #648 OK 573ms
/iceberg/iceberg table engine/feature/row policies/combination #649 OK 666ms
/iceberg/iceberg table engine/feature/row policies/combination #650 OK 670ms
/iceberg/iceberg table engine/feature/row policies/combination #651 OK 657ms
/iceberg/iceberg table engine/feature/row policies/combination #652 OK 695ms
/iceberg/iceberg table engine/feature/row policies/combination #653 OK 646ms
/iceberg/iceberg table engine/feature/row policies/combination #654 OK 577ms
/iceberg/iceberg table engine/feature/row policies/combination #655 OK 708ms
/iceberg/iceberg table engine/feature/row policies/combination #656 OK 645ms
/iceberg/iceberg table engine/feature/row policies/combination #657 OK 730ms
/iceberg/iceberg table engine/feature/row policies/combination #658 OK 604ms
/iceberg/iceberg table engine/feature/row policies/combination #659 OK 698ms
/iceberg/iceberg table engine/feature/row policies/combination #660 OK 629ms
/iceberg/iceberg table engine/feature/row policies/combination #661 OK 711ms
/iceberg/iceberg table engine/feature/row policies/combination #662 OK 650ms
/iceberg/iceberg table engine/feature/row policies/combination #663 OK 740ms
/iceberg/iceberg table engine/feature/row policies/combination #664 OK 740ms
/iceberg/iceberg table engine/feature/row policies/combination #665 OK 729ms
/iceberg/iceberg table engine/feature/row policies/combination #666 OK 646ms
/iceberg/iceberg table engine/feature/row policies/combination #667 OK 689ms
/iceberg/iceberg table engine/feature/row policies/combination #668 OK 735ms
/iceberg/iceberg table engine/feature/row policies/combination #669 OK 639ms
/iceberg/iceberg table engine/feature/row policies/combination #670 OK 586ms
/iceberg/iceberg table engine/feature/row policies/combination #671 OK 571ms
/iceberg/iceberg table engine/feature/row policies/combination #672 OK 697ms
/iceberg/iceberg table engine/feature/row policies/combination #673 OK 582ms
/iceberg/iceberg table engine/feature/row policies/combination #674 OK 643ms
/iceberg/iceberg table engine/feature/row policies/combination #675 OK 711ms
/iceberg/iceberg table engine/feature/row policies/combination #676 OK 641ms
/iceberg/iceberg table engine/feature/row policies/combination #677 OK 572ms
/iceberg/iceberg table engine/feature/row policies/combination #678 OK 736ms
/iceberg/iceberg table engine/feature/row policies/combination #679 OK 731ms
/iceberg/iceberg table engine/feature/row policies/combination #680 OK 569ms
/iceberg/iceberg table engine/feature/row policies/combination #681 OK 570ms
/iceberg/iceberg table engine/feature/row policies/combination #682 OK 712ms
/iceberg/iceberg table engine/feature/row policies/combination #683 OK 826ms
/iceberg/iceberg table engine/feature/row policies/combination #684 OK 725ms
/iceberg/iceberg table engine/feature/row policies/combination #685 OK 700ms
/iceberg/iceberg table engine/feature/row policies/combination #686 OK 740ms
/iceberg/iceberg table engine/feature/row policies/combination #687 OK 736ms
/iceberg/iceberg table engine/feature/row policies/combination #688 OK 770ms
/iceberg/iceberg table engine/feature/row policies/combination #689 OK 753ms
/iceberg/iceberg table engine/feature/row policies/combination #690 OK 726ms
/iceberg/iceberg table engine/feature/row policies/combination #691 OK 650ms
/iceberg/iceberg table engine/feature/row policies/combination #692 OK 617ms
/iceberg/iceberg table engine/feature/row policies/combination #693 OK 579ms
/iceberg/iceberg table engine/feature/row policies/combination #694 OK 581ms
/iceberg/iceberg table engine/feature/row policies/combination #695 OK 770ms
/iceberg/iceberg table engine/feature/row policies/combination #696 OK 662ms
/iceberg/iceberg table engine/feature/row policies/combination #697 OK 711ms
/iceberg/iceberg table engine/feature/row policies/combination #698 OK 597ms
/iceberg/iceberg table engine/feature/row policies/combination #699 OK 579ms
/iceberg/iceberg table engine/feature/row policies/combination #700 OK 561ms
/iceberg/iceberg table engine/feature/row policies/combination #701 OK 733ms
/iceberg/iceberg table engine/feature/row policies/combination #702 OK 582ms
/iceberg/iceberg table engine/feature/row policies/combination #703 OK 644ms
/iceberg/iceberg table engine/feature/row policies/combination #704 OK 704ms
/iceberg/iceberg table engine/feature/row policies/combination #705 OK 667ms
/iceberg/iceberg table engine/feature/row policies/combination #706 OK 706ms
/iceberg/iceberg table engine/feature/row policies/combination #707 OK 646ms
/iceberg/iceberg table engine/feature/row policies/combination #708 OK 574ms
/iceberg/iceberg table engine/feature/row policies/combination #709 OK 713ms
/iceberg/iceberg table engine/feature/row policies/combination #710 OK 641ms
/iceberg/iceberg table engine/feature/row policies/combination #711 OK 569ms
/iceberg/iceberg table engine/feature/row policies/combination #712 OK 708ms
/iceberg/iceberg table engine/feature/row policies/combination #713 OK 642ms
/iceberg/iceberg table engine/feature/row policies/combination #714 OK 561ms
/iceberg/iceberg table engine/feature/row policies/combination #715 OK 593ms
/iceberg/iceberg table engine/feature/row policies/combination #716 OK 701ms
/iceberg/iceberg table engine/feature/row policies/combination #717 OK 641ms
/iceberg/iceberg table engine/feature/row policies/combination #718 OK 567ms
/iceberg/iceberg table engine/feature/row policies/combination #719 OK 747ms
/iceberg/iceberg table engine/feature/row policies/combination #720 OK 670ms
/iceberg/iceberg table engine/feature/row policies/combination #721 OK 708ms
/iceberg/iceberg table engine/feature/row policies/combination #722 OK 721ms
/iceberg/iceberg table engine/feature/row policies/combination #723 OK 639ms
/iceberg/iceberg table engine/feature/row policies/combination #724 OK 572ms
/iceberg/iceberg table engine/feature/row policies/combination #725 OK 717ms
/iceberg/iceberg table engine/feature/row policies/combination #726 OK 707ms
/iceberg/iceberg table engine/feature/row policies/combination #727 OK 669ms
/iceberg/iceberg table engine/feature/row policies/combination #728 OK 715ms
/iceberg/iceberg table engine/feature/row policies/combination #729 OK 659ms
/iceberg/iceberg table engine/feature/row policies/combination #730 OK 630ms
/iceberg/iceberg table engine/feature/row policies/combination #731 OK 616ms
/iceberg/iceberg table engine/feature/row policies/combination #732 OK 724ms
/iceberg/iceberg table engine/feature/row policies/combination #733 OK 750ms
/iceberg/iceberg table engine/feature/row policies/combination #734 OK 726ms
/iceberg/iceberg table engine/feature/row policies/combination #735 OK 619ms
/iceberg/iceberg table engine/feature/row policies/combination #736 OK 686ms
/iceberg/iceberg table engine/feature/row policies/combination #737 OK 620ms
/iceberg/iceberg table engine/feature/row policies/combination #738 OK 725ms
/iceberg/iceberg table engine/feature/row policies/combination #739 OK 699ms
/iceberg/iceberg table engine/feature/row policies/combination #740 OK 715ms
/iceberg/iceberg table engine/feature/row policies/combination #741 OK 690ms
/iceberg/iceberg table engine/feature/row policies/combination #742 OK 573ms
/iceberg/iceberg table engine/feature/row policies/combination #743 OK 705ms
/iceberg/iceberg table engine/feature/row policies/combination #744 OK 635ms
/iceberg/iceberg table engine/feature/row policies/combination #745 OK 579ms
/iceberg/iceberg table engine/feature/row policies/combination #746 OK 659ms
/iceberg/iceberg table engine/feature/row policies/combination #747 OK 581ms
/iceberg/iceberg table engine/feature/row policies/combination #748 OK 575ms
/iceberg/iceberg table engine/feature/row policies/combination #749 OK 711ms
/iceberg/iceberg table engine/feature/row policies/combination #750 OK 677ms
/iceberg/iceberg table engine/feature/row policies/combination #751 OK 669ms
/iceberg/iceberg table engine/feature/row policies/combination #752 OK 639ms
/iceberg/iceberg table engine/feature/row policies/combination #753 OK 665ms
/iceberg/iceberg table engine/feature/row policies/combination #754 OK 581ms
/iceberg/iceberg table engine/feature/row policies/combination #755 OK 683ms
/iceberg/iceberg table engine/feature/row policies/combination #756 OK 687ms
/iceberg/iceberg table engine/feature/row policies/combination #757 OK 642ms
/iceberg/iceberg table engine/feature/row policies/combination #758 OK 576ms
/iceberg/iceberg table engine/feature/row policies/combination #759 OK 703ms
/iceberg/iceberg table engine/feature/row policies/combination #760 OK 718ms
/iceberg/iceberg table engine/feature/row policies/combination #761 OK 708ms
/iceberg/iceberg table engine/feature/row policies/combination #762 OK 567ms
/iceberg/iceberg table engine/feature/row policies/combination #763 OK 570ms
/iceberg/iceberg table engine/feature/row policies/combination #764 OK 619ms
/iceberg/iceberg table engine/feature/row policies/combination #765 OK 713ms
/iceberg/iceberg table engine/feature/row policies/combination #766 OK 706ms
/iceberg/iceberg table engine/feature/row policies/combination #767 OK 556ms
/iceberg/iceberg table engine/feature/row policies/combination #768 OK 640ms
/iceberg/iceberg table engine/feature/row policies/combination #769 OK 720ms
/iceberg/iceberg table engine/feature/row policies/combination #770 OK 699ms
/iceberg/iceberg table engine/feature/row policies/combination #771 OK 570ms
/iceberg/iceberg table engine/feature/row policies/combination #772 OK 753ms
/iceberg/iceberg table engine/feature/row policies/combination #773 OK 696ms
/iceberg/iceberg table engine/feature/row policies/combination #774 OK 632ms
/iceberg/iceberg table engine/feature/row policies/combination #775 OK 756ms
/iceberg/iceberg table engine/feature/row policies/combination #776 OK 714ms
/iceberg/iceberg table engine/feature/row policies/combination #777 OK 577ms
/iceberg/iceberg table engine/feature/row policies/combination #778 OK 661ms
/iceberg/iceberg table engine/feature/row policies/combination #779 OK 704ms
/iceberg/iceberg table engine/feature/row policies/combination #780 OK 648ms
/iceberg/iceberg table engine/feature/row policies/combination #781 OK 695ms
/iceberg/iceberg table engine/feature/row policies/combination #782 OK 667ms
/iceberg/iceberg table engine/feature/row policies/combination #783 OK 693ms
/iceberg/iceberg table engine/feature/row policies/combination #784 OK 716ms
/iceberg/iceberg table engine/feature/row policies/combination #785 OK 743ms
/iceberg/iceberg table engine/feature/row policies/combination #786 OK 724ms
/iceberg/iceberg table engine/feature/row policies/combination #787 OK 629ms
/iceberg/iceberg table engine/feature/row policies/combination #788 OK 638ms
/iceberg/iceberg table engine/feature/row policies/combination #789 OK 625ms
/iceberg/iceberg table engine/feature/row policies/combination #790 OK 635ms
/iceberg/iceberg table engine/feature/row policies/combination #791 OK 639ms
/iceberg/iceberg table engine/feature/row policies/combination #792 OK 628ms
/iceberg/iceberg table engine/feature/row policies/combination #793 OK 710ms
/iceberg/iceberg table engine/feature/row policies/combination #794 OK 630ms
/iceberg/iceberg table engine/feature/row policies/combination #795 OK 583ms
/iceberg/iceberg table engine/feature/row policies/combination #796 OK 583ms
/iceberg/iceberg table engine/feature/row policies/combination #797 OK 694ms
/iceberg/iceberg table engine/feature/row policies/combination #798 OK 770ms
/iceberg/iceberg table engine/feature/row policies/combination #799 OK 571ms
/iceberg/iceberg table engine/feature/row policies/combination #800 OK 712ms
/iceberg/iceberg table engine/feature/row policies/combination #801 OK 646ms
/iceberg/iceberg table engine/feature/row policies/combination #802 OK 723ms
/iceberg/iceberg table engine/feature/row policies/combination #803 OK 685ms
/iceberg/iceberg table engine/feature/row policies/combination #804 OK 691ms
/iceberg/iceberg table engine/feature/row policies/combination #805 OK 696ms
/iceberg/iceberg table engine/feature/row policies/combination #806 OK 634ms
/iceberg/iceberg table engine/feature/row policies/combination #807 OK 693ms
/iceberg/iceberg table engine/feature/row policies/combination #808 OK 582ms
/iceberg/iceberg table engine/feature/row policies/combination #809 OK 608ms
/iceberg/iceberg table engine/feature/row policies/combination #810 OK 656ms
/iceberg/iceberg table engine/feature/row policies/combination #811 OK 634ms
/iceberg/iceberg table engine/feature/row policies/combination #812 OK 703ms
/iceberg/iceberg table engine/feature/row policies/combination #813 OK 656ms
/iceberg/iceberg table engine/feature/row policies/combination #814 OK 748ms
/iceberg/iceberg table engine/feature/row policies/combination #815 OK 660ms
/iceberg/iceberg table engine/feature/row policies/combination #816 OK 692ms
/iceberg/iceberg table engine/feature/row policies/combination #817 OK 570ms
/iceberg/iceberg table engine/feature/row policies/combination #818 OK 697ms
/iceberg/iceberg table engine/feature/row policies/combination #819 OK 695ms
/iceberg/iceberg table engine/feature/row policies/combination #820 OK 570ms
/iceberg/iceberg table engine/feature/row policies/combination #821 OK 711ms
/iceberg/iceberg table engine/feature/row policies/combination #822 OK 567ms
/iceberg/iceberg table engine/feature/row policies/combination #823 OK 633ms
/iceberg/iceberg table engine/feature/row policies/combination #824 OK 698ms
/iceberg/iceberg table engine/feature/row policies/combination #825 OK 573ms
/iceberg/iceberg table engine/feature/row policies/combination #826 OK 718ms
/iceberg/iceberg table engine/feature/row policies/combination #827 OK 698ms
/iceberg/iceberg table engine/feature/row policies/combination #828 OK 675ms
/iceberg/iceberg table engine/feature/row policies/combination #829 OK 582ms
/iceberg/iceberg table engine/feature/row policies/combination #830 OK 781ms
/iceberg/iceberg table engine/feature/row policies/combination #831 OK 707ms
/iceberg/iceberg table engine/feature/row policies/combination #832 OK 679ms
/iceberg/iceberg table engine/feature/row policies/combination #833 OK 665ms
/iceberg/iceberg table engine/feature/row policies/combination #834 OK 648ms
/iceberg/iceberg table engine/feature/row policies/combination #835 OK 709ms
/iceberg/iceberg table engine/feature/row policies/combination #836 OK 650ms
/iceberg/iceberg table engine/feature/row policies/combination #837 OK 705ms
/iceberg/iceberg table engine/feature/row policies/combination #838 OK 605ms
/iceberg/iceberg table engine/feature/row policies/combination #839 OK 587ms
/iceberg/iceberg table engine/feature/row policies/combination #840 OK 703ms
/iceberg/iceberg table engine/feature/row policies/combination #841 OK 691ms
/iceberg/iceberg table engine/feature/row policies/combination #842 OK 666ms
/iceberg/iceberg table engine/feature/row policies/combination #843 OK 681ms
/iceberg/iceberg table engine/feature/row policies/combination #844 OK 740ms
/iceberg/iceberg table engine/feature/row policies/combination #845 OK 742ms
/iceberg/iceberg table engine/feature/row policies/combination #846 OK 774ms
/iceberg/iceberg table engine/feature/row policies/combination #847 OK 604ms
/iceberg/iceberg table engine/feature/row policies/combination #848 OK 593ms
/iceberg/iceberg table engine/feature/row policies/combination #849 OK 739ms
/iceberg/iceberg table engine/feature/row policies/combination #850 OK 677ms
/iceberg/iceberg table engine/feature/row policies/combination #851 OK 652ms
/iceberg/iceberg table engine/feature/row policies/combination #852 OK 739ms
/iceberg/iceberg table engine/feature/row policies/combination #853 OK 699ms
/iceberg/iceberg table engine/feature/row policies/combination #854 OK 714ms
/iceberg/iceberg table engine/feature/row policies/combination #855 OK 722ms
/iceberg/iceberg table engine/feature/row policies/combination #856 OK 704ms
/iceberg/iceberg table engine/feature/row policies/combination #857 OK 717ms
/iceberg/iceberg table engine/feature/row policies/combination #858 OK 642ms
/iceberg/iceberg table engine/feature/row policies/combination #859 OK 686ms
/iceberg/iceberg table engine/feature/row policies/combination #860 OK 650ms
/iceberg/iceberg table engine/feature/row policies/combination #861 OK 659ms
/iceberg/iceberg table engine/feature/row policies/combination #862 OK 636ms
/iceberg/iceberg table engine/feature/row policies/combination #863 OK 677ms
/iceberg/iceberg table engine/feature/row policies/combination #864 OK 673ms
/iceberg/iceberg table engine/feature/row policies/combination #865 OK 644ms
/iceberg/iceberg table engine/feature/row policies/combination #866 OK 684ms
/iceberg/iceberg table engine/feature/row policies/combination #867 OK 733ms
/iceberg/iceberg table engine/feature/row policies/combination #868 OK 640ms
/iceberg/iceberg table engine/feature/row policies/combination #869 OK 676ms
/iceberg/iceberg table engine/feature/row policies/combination #870 OK 702ms
/iceberg/iceberg table engine/feature/row policies/combination #871 OK 710ms
/iceberg/iceberg table engine/feature/row policies/combination #872 OK 590ms
/iceberg/iceberg table engine/feature/row policies/combination #873 OK 730ms
/iceberg/iceberg table engine/feature/row policies/combination #874 OK 638ms
/iceberg/iceberg table engine/feature/row policies/combination #875 OK 639ms
/iceberg/iceberg table engine/feature/row policies/combination #876 OK 642ms
/iceberg/iceberg table engine/feature/row policies/combination #877 OK 702ms
/iceberg/iceberg table engine/feature/row policies/combination #878 OK 561ms
/iceberg/iceberg table engine/feature/row policies/combination #879 OK 652ms
/iceberg/iceberg table engine/feature/row policies/combination #880 OK 556ms
/iceberg/iceberg table engine/feature/row policies/combination #881 OK 649ms
/iceberg/iceberg table engine/feature/row policies/combination #882 OK 682ms
/iceberg/iceberg table engine/feature/row policies/combination #883 OK 660ms
/iceberg/iceberg table engine/feature/row policies/combination #884 OK 579ms
/iceberg/iceberg table engine/feature/row policies/combination #885 OK 705ms
/iceberg/iceberg table engine/feature/row policies/combination #886 OK 723ms
/iceberg/iceberg table engine/feature/row policies/combination #887 OK 631ms
/iceberg/iceberg table engine/feature/row policies/combination #888 OK 664ms
/iceberg/iceberg table engine/feature/row policies/combination #889 OK 583ms
/iceberg/iceberg table engine/feature/row policies/combination #890 OK 711ms
/iceberg/iceberg table engine/feature/row policies/combination #891 OK 554ms
/iceberg/iceberg table engine/feature/row policies/combination #892 OK 719ms
/iceberg/iceberg table engine/feature/row policies/combination #893 OK 646ms
/iceberg/iceberg table engine/feature/row policies/combination #894 OK 585ms
/iceberg/iceberg table engine/feature/row policies/combination #895 OK 709ms
/iceberg/iceberg table engine/feature/row policies/combination #896 OK 701ms
/iceberg/iceberg table engine/feature/row policies/combination #897 OK 706ms
/iceberg/iceberg table engine/feature/row policies/combination #898 OK 580ms
/iceberg/iceberg table engine/feature/row policies/combination #899 OK 654ms
/iceberg/iceberg table engine/feature/row policies/combination #900 OK 645ms
/iceberg/iceberg table engine/feature/row policies/combination #901 OK 689ms
/iceberg/iceberg table engine/feature/row policies/combination #902 OK 634ms
/iceberg/iceberg table engine/feature/row policies/combination #903 OK 690ms
/iceberg/iceberg table engine/feature/row policies/combination #904 OK 657ms
/iceberg/iceberg table engine/feature/row policies/combination #905 OK 707ms
/iceberg/iceberg table engine/feature/row policies/combination #906 OK 646ms
/iceberg/iceberg table engine/feature/row policies/combination #907 OK 568ms
/iceberg/iceberg table engine/feature/row policies/combination #908 OK 563ms
/iceberg/iceberg table engine/feature/row policies/combination #909 OK 572ms
/iceberg/iceberg table engine/feature/row policies/combination #910 OK 709ms
/iceberg/iceberg table engine/feature/row policies/combination #911 OK 608ms
/iceberg/iceberg table engine/feature/row policies/combination #912 OK 694ms
/iceberg/iceberg table engine/feature/row policies/combination #913 OK 610ms
/iceberg/iceberg table engine/feature/row policies/combination #914 OK 679ms
/iceberg/iceberg table engine/feature/row policies/combination #915 OK 712ms
/iceberg/iceberg table engine/feature/row policies/combination #916 OK 695ms
/iceberg/iceberg table engine/feature/row policies/combination #917 OK 710ms
/iceberg/iceberg table engine/feature/row policies/combination #918 OK 698ms
/iceberg/iceberg table engine/feature/row policies/combination #919 OK 688ms
/iceberg/iceberg table engine/feature/row policies/combination #920 OK 573ms
/iceberg/iceberg table engine/feature/row policies/combination #921 OK 719ms
/iceberg/iceberg table engine/feature/row policies/combination #922 OK 660ms
/iceberg/iceberg table engine/feature/row policies/combination #923 OK 713ms
/iceberg/iceberg table engine/feature/row policies/combination #924 OK 584ms
/iceberg/iceberg table engine/feature/row policies/combination #925 OK 717ms
/iceberg/iceberg table engine/feature/row policies/combination #926 OK 692ms
/iceberg/iceberg table engine/feature/row policies/combination #927 OK 703ms
/iceberg/iceberg table engine/feature/row policies/combination #928 OK 642ms
/iceberg/iceberg table engine/feature/row policies/combination #929 OK 635ms
/iceberg/iceberg table engine/feature/row policies/combination #930 OK 641ms
/iceberg/iceberg table engine/feature/row policies/combination #931 OK 722ms
/iceberg/iceberg table engine/feature/row policies/combination #932 OK 714ms
/iceberg/iceberg table engine/feature/row policies/combination #933 OK 595ms
/iceberg/iceberg table engine/feature/row policies/combination #934 OK 670ms
/iceberg/iceberg table engine/feature/row policies/combination #935 OK 724ms
/iceberg/iceberg table engine/feature/row policies/combination #936 OK 660ms
/iceberg/iceberg table engine/feature/row policies/combination #937 OK 733ms
/iceberg/iceberg table engine/feature/row policies/combination #938 OK 599ms
/iceberg/iceberg table engine/feature/row policies/combination #939 OK 799ms
/iceberg/iceberg table engine/feature/row policies/combination #940 OK 738ms
/iceberg/iceberg table engine/feature/row policies/combination #941 OK 666ms
/iceberg/iceberg table engine/feature/row policies/combination #942 OK 723ms
/iceberg/iceberg table engine/feature/row policies/combination #943 OK 644ms
/iceberg/iceberg table engine/feature/row policies/combination #944 OK 576ms
/iceberg/iceberg table engine/feature/row policies/combination #945 OK 735ms
/iceberg/iceberg table engine/feature/row policies/combination #946 OK 725ms
/iceberg/iceberg table engine/feature/row policies/combination #947 OK 587ms
/iceberg/iceberg table engine/feature/row policies/combination #948 OK 649ms
/iceberg/iceberg table engine/feature/row policies/combination #949 OK 577ms
/iceberg/iceberg table engine/feature/row policies/combination #950 OK 647ms
/iceberg/iceberg table engine/feature/row policies/combination #951 OK 706ms
/iceberg/iceberg table engine/feature/row policies/combination #952 OK 570ms
/iceberg/iceberg table engine/feature/row policies/combination #953 OK 647ms
/iceberg/iceberg table engine/feature/row policies/combination #954 OK 717ms
/iceberg/iceberg table engine/feature/row policies/combination #955 OK 678ms
/iceberg/iceberg table engine/feature/row policies/combination #956 OK 615ms
/iceberg/iceberg table engine/feature/row policies/combination #957 OK 583ms
/iceberg/iceberg table engine/feature/row policies/combination #958 OK 694ms
/iceberg/iceberg table engine/feature/row policies/combination #959 OK 629ms
/iceberg/iceberg table engine/feature/row policies/combination #960 OK 631ms
/iceberg/iceberg table engine/feature/row policies/combination #961 OK 625ms
/iceberg/iceberg table engine/feature/row policies/combination #962 OK 723ms
/iceberg/iceberg table engine/feature/row policies/combination #963 OK 699ms
/iceberg/iceberg table engine/feature/row policies/combination #964 OK 553ms
/iceberg/iceberg table engine/feature/row policies/combination #965 OK 585ms
/iceberg/iceberg table engine/feature/row policies/combination #966 OK 761ms
/iceberg/iceberg table engine/feature/row policies/combination #967 OK 608ms
/iceberg/iceberg table engine/feature/row policies/combination #968 OK 696ms
/iceberg/iceberg table engine/feature/row policies/combination #969 OK 705ms
/iceberg/iceberg table engine/feature/row policies/combination #970 OK 702ms
/iceberg/iceberg table engine/feature/row policies/combination #971 OK 670ms
/iceberg/iceberg table engine/feature/row policies/combination #972 OK 598ms
/iceberg/iceberg table engine/feature/row policies/combination #973 OK 713ms
/iceberg/iceberg table engine/feature/row policies/combination #974 OK 711ms
/iceberg/iceberg table engine/feature/row policies/combination #975 OK 726ms
/iceberg/iceberg table engine/feature/row policies/combination #976 OK 652ms
/iceberg/iceberg table engine/feature/row policies/combination #977 OK 645ms
/iceberg/iceberg table engine/feature/row policies/combination #978 OK 573ms
/iceberg/iceberg table engine/feature/row policies/combination #979 OK 632ms
/iceberg/iceberg table engine/feature/row policies/combination #980 OK 700ms
/iceberg/iceberg table engine/feature/row policies/combination #981 OK 702ms
/iceberg/iceberg table engine/feature/row policies/combination #982 OK 705ms
/iceberg/iceberg table engine/feature/row policies/combination #983 OK 720ms
/iceberg/iceberg table engine/feature/row policies/combination #984 OK 678ms
/iceberg/iceberg table engine/feature/row policies/combination #985 OK 700ms
/iceberg/iceberg table engine/feature/row policies/combination #986 OK 692ms
/iceberg/iceberg table engine/feature/row policies/combination #987 OK 720ms
/iceberg/iceberg table engine/feature/row policies/combination #988 OK 721ms
/iceberg/iceberg table engine/feature/row policies/combination #989 OK 704ms
/iceberg/iceberg table engine/feature/row policies/combination #990 OK 577ms
/iceberg/iceberg table engine/feature/row policies/combination #991 OK 721ms
/iceberg/iceberg table engine/feature/row policies/combination #992 OK 574ms
/iceberg/iceberg table engine/feature/row policies/combination #993 OK 579ms
/iceberg/iceberg table engine/feature/row policies/combination #994 OK 633ms
/iceberg/iceberg table engine/feature/row policies/combination #995 OK 669ms
/iceberg/iceberg table engine/feature/row policies/combination #996 OK 662ms
/iceberg/iceberg table engine/feature/row policies/combination #997 OK 704ms
/iceberg/iceberg table engine/feature/row policies/combination #998 OK 659ms
/iceberg/iceberg table engine/feature/row policies/combination #999 OK 694ms
/iceberg/iceberg table engine/column rbac OK 7m 18s
/iceberg/iceberg table engine/column rbac/combination #0 OK 4s 183ms
/iceberg/iceberg table engine/column rbac/combination #1 OK 4s 181ms
/iceberg/iceberg table engine/column rbac/combination #2 OK 3s 987ms
/iceberg/iceberg table engine/column rbac/combination #3 OK 4s 320ms
/iceberg/iceberg table engine/column rbac/combination #4 OK 4s 198ms
/iceberg/iceberg table engine/column rbac/combination #5 OK 4s 5ms
/iceberg/iceberg table engine/column rbac/combination #6 OK 4s 350ms
/iceberg/iceberg table engine/column rbac/combination #7 OK 4s 173ms
/iceberg/iceberg table engine/column rbac/combination #8 OK 4s 165ms
/iceberg/iceberg table engine/column rbac/combination #9 OK 4s 781ms
/iceberg/iceberg table engine/column rbac/combination #10 OK 4s 371ms
/iceberg/iceberg table engine/column rbac/combination #11 OK 4s 256ms
/iceberg/iceberg table engine/column rbac/combination #12 OK 4s 82ms
/iceberg/iceberg table engine/column rbac/combination #13 OK 4s 250ms
/iceberg/iceberg table engine/column rbac/combination #14 OK 4s 44ms
/iceberg/iceberg table engine/column rbac/combination #15 OK 5s 377ms
/iceberg/iceberg table engine/column rbac/combination #16 OK 4s 728ms
/iceberg/iceberg table engine/column rbac/combination #17 OK 4s 409ms
/iceberg/iceberg table engine/column rbac/combination #18 OK 4s 146ms
/iceberg/iceberg table engine/column rbac/combination #19 OK 4s 143ms
/iceberg/iceberg table engine/column rbac/combination #20 OK 4s 290ms
/iceberg/iceberg table engine/column rbac/combination #21 OK 4s 45ms
/iceberg/iceberg table engine/column rbac/combination #22 OK 4s 288ms
/iceberg/iceberg table engine/column rbac/combination #23 OK 4s 10ms
/iceberg/iceberg table engine/column rbac/combination #24 OK 4s 355ms
/iceberg/iceberg table engine/column rbac/combination #25 OK 3s 972ms
/iceberg/iceberg table engine/column rbac/combination #26 OK 4s 180ms
/iceberg/iceberg table engine/column rbac/combination #27 OK 4s 106ms
/iceberg/iceberg table engine/column rbac/combination #28 OK 4s 256ms
/iceberg/iceberg table engine/column rbac/combination #29 OK 4s 619ms
/iceberg/iceberg table engine/column rbac/combination #30 OK 4s 229ms
/iceberg/iceberg table engine/column rbac/combination #31 OK 4s 201ms
/iceberg/iceberg table engine/column rbac/combination #32 OK 4s 8ms
/iceberg/iceberg table engine/column rbac/combination #33 OK 4s 441ms
/iceberg/iceberg table engine/column rbac/combination #34 OK 4s 186ms
/iceberg/iceberg table engine/column rbac/combination #35 OK 3s 991ms
/iceberg/iceberg table engine/column rbac/combination #36 OK 4s 17ms
/iceberg/iceberg table engine/column rbac/combination #37 OK 4s 147ms
/iceberg/iceberg table engine/column rbac/combination #38 OK 4s 62ms
/iceberg/iceberg table engine/column rbac/combination #39 OK 3s 949ms
/iceberg/iceberg table engine/column rbac/combination #40 OK 4s 310ms
/iceberg/iceberg table engine/column rbac/combination #41 OK 3s 997ms
/iceberg/iceberg table engine/column rbac/combination #42 OK 4s 884ms
/iceberg/iceberg table engine/column rbac/combination #43 OK 4s 333ms
/iceberg/iceberg table engine/column rbac/combination #44 OK 4s 229ms
/iceberg/iceberg table engine/column rbac/combination #45 OK 4s 817ms
/iceberg/iceberg table engine/column rbac/combination #46 OK 4s 133ms
/iceberg/iceberg table engine/column rbac/combination #47 OK 4s 489ms
/iceberg/iceberg table engine/column rbac/combination #48 OK 4s 36ms
/iceberg/iceberg table engine/column rbac/combination #49 OK 4s 272ms
/iceberg/iceberg table engine/column rbac/combination #50 OK 4s 63ms
/iceberg/iceberg table engine/column rbac/combination #51 OK 4s 751ms
/iceberg/iceberg table engine/column rbac/combination #52 OK 4s 79ms
/iceberg/iceberg table engine/column rbac/combination #53 OK 4s 347ms
/iceberg/iceberg table engine/column rbac/combination #54 OK 4s 15ms
/iceberg/iceberg table engine/column rbac/combination #55 OK 3s 979ms
/iceberg/iceberg table engine/column rbac/combination #56 OK 4s 16ms
/iceberg/iceberg table engine/column rbac/combination #57 OK 4s 372ms
/iceberg/iceberg table engine/column rbac/combination #58 OK 4s 481ms
/iceberg/iceberg table engine/column rbac/combination #59 OK 4s 398ms
/iceberg/iceberg table engine/column rbac/combination #60 OK 4s 903ms
/iceberg/iceberg table engine/column rbac/combination #61 OK 4s 298ms
/iceberg/iceberg table engine/column rbac/combination #62 OK 4s 196ms
/iceberg/iceberg table engine/column rbac/combination #63 OK 4s 193ms
/iceberg/iceberg table engine/column rbac/combination #64 OK 4s 102ms
/iceberg/iceberg table engine/column rbac/combination #65 OK 4s 140ms
/iceberg/iceberg table engine/column rbac/combination #66 OK 4s 144ms
/iceberg/iceberg table engine/column rbac/combination #67 OK 5s 166ms
/iceberg/iceberg table engine/column rbac/combination #68 OK 4s 635ms
/iceberg/iceberg table engine/column rbac/combination #69 OK 4s 279ms
/iceberg/iceberg table engine/column rbac/combination #70 OK 4s 415ms
/iceberg/iceberg table engine/column rbac/combination #71 OK 4s 335ms
/iceberg/iceberg table engine/column rbac/combination #72 OK 4s 406ms
/iceberg/iceberg table engine/column rbac/combination #73 OK 4s 284ms
/iceberg/iceberg table engine/column rbac/combination #74 OK 4s 197ms
/iceberg/iceberg table engine/column rbac/combination #75 OK 4s 425ms
/iceberg/iceberg table engine/column rbac/combination #76 OK 4s 948ms
/iceberg/iceberg table engine/column rbac/combination #77 OK 4s 147ms
/iceberg/iceberg table engine/column rbac/combination #78 OK 5s 566ms
/iceberg/iceberg table engine/column rbac/combination #79 OK 4s 329ms
/iceberg/iceberg table engine/column rbac/combination #80 OK 4s 270ms
/iceberg/iceberg table engine/column rbac/combination #81 OK 4s 306ms
/iceberg/iceberg table engine/column rbac/combination #82 OK 4s 305ms
/iceberg/iceberg table engine/column rbac/combination #83 OK 4s 678ms
/iceberg/iceberg table engine/column rbac/combination #84 OK 4s 354ms
/iceberg/iceberg table engine/column rbac/combination #85 OK 4s 730ms
/iceberg/iceberg table engine/column rbac/combination #86 OK 4s 345ms
/iceberg/iceberg table engine/column rbac/combination #87 OK 4s 707ms
/iceberg/iceberg table engine/column rbac/combination #88 OK 4s 123ms
/iceberg/iceberg table engine/column rbac/combination #89 OK 4s 246ms
/iceberg/iceberg table engine/column rbac/combination #90 OK 4s 592ms
/iceberg/iceberg table engine/column rbac/combination #91 OK 5s 479ms
/iceberg/iceberg table engine/column rbac/combination #92 OK 4s 562ms
/iceberg/iceberg table engine/column rbac/combination #93 OK 4s 38ms
/iceberg/iceberg table engine/column rbac/combination #94 OK 4s 181ms
/iceberg/iceberg table engine/column rbac/combination #95 OK 4s 122ms
/iceberg/iceberg table engine/column rbac/combination #96 OK 4s 168ms
/iceberg/iceberg table engine/column rbac/combination #97 OK 5s 535ms
/iceberg/iceberg table engine/column rbac/combination #98 OK 4s 171ms
/iceberg/iceberg table engine/column rbac/combination #99 OK 4s 682ms
/iceberg/iceberg table engine/feature OK 12s 622ms
/iceberg/iceberg table engine/feature/alter column OK 2s 289ms
/iceberg/iceberg table engine/feature/alter comment columns OK 1s 914ms
/iceberg/iceberg table engine/feature/alter partitions OK 3s 184ms
/iceberg/iceberg table engine/feature/alter settings OK 1s 748ms
/iceberg/iceberg table engine/feature/alter delete OK 1s 738ms
/iceberg/iceberg table engine/feature/alter order by OK 1s 744ms
/iceberg/iceberg table engine/rbac OK 2s 10ms
/iceberg/iceberg table engine/rbac/drop table OK 2s 8ms
/iceberg/iceberg table engine/feature OK 3s 502ms
/iceberg/iceberg table engine/feature/named collections config OK 1s 714ms
/iceberg/iceberg table engine/feature/named collections OK 1s 786ms
/iceberg/iceberg table engine/write min max pruning OK 1s 793ms
/iceberg/iceberg table engine/write min max pruning/write min max pruning OK 1s 792ms
/iceberg/iceberg table engine/deletes OK 1s 836ms
/iceberg/iceberg table engine/deletes/position delete smoke XFail 1s 835ms
/iceberg/iceberg table engine/compaction OK 2s 82ms
/iceberg/iceberg table engine/compaction/compaction smoke XFail 2s 81ms
/iceberg/iceberg table engine/system tables partition sorting keys OK 1s 701ms
/iceberg/iceberg table engine/system tables partition sorting keys/system tables partition sorting keys OK 1s 700ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922