Iceberg Test Run Report

DateSep 21, 2026 0:23
Duration57m 9s
Framework TestFlows 2.0.250110.1002922

Artifacts

Test artifacts can be found at https://altinity-build-artifacts.s3.amazonaws.com/index.html#REFs/v25.3.14.10001.altinitystable/5dc76dc3701d604f851081313ff23bbc8a702463/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
packagehttps://s3.amazonaws.com/altinity-build-artifacts/25.3/5dc76dc3701d604f851081313ff23bbc8a702463/package_aarch64/clickhouse-common-static_25.3.14.10001.altinitystable_arm64.deb
version25.3.14.10001.altinitystable
user.nameMyroTk
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash3e64dccfa4baf08d56b853fdc24761a45ec81ee0
job.nameiceberg_1
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/35543791440
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://s3.amazonaws.com/altinity-build-artifacts/25.3/5dc76dc3701d604f851081313ff23bbc8a702463/package_aarch64/clickhouse-common-static_25.3.14.10001.altinitystable_arm64.deb
as_binaryFalse
base_osNone
keeper_pathNone
zookeeper_versionNone
use_keeperFalse
stressFalse
collect_service_logsTrue
thread_fuzzerFalse
with_analyzerTrue
reuse_envFalse
cicdFalse
minio_uriSecret(name='minio_uri')
minio_root_userSecret(name='minio_root_user')
minio_root_passwordSecret(name='minio_root_password')

Summary

97.3%OK
<1%Known

Statistics

Units Skip OK Fail XFail
Modules
1
1
Features
34
4
30
Scenarios
484
11
471
2
Checks
100
100
Steps
53560
53546
4
10

Known Fails

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

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

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

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

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

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

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

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

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

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

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

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

61\|              input_format_parquet_bloom_filter_push_down="0",
62\|          )
63\|          assert result.output.strip() == "", error()
64\|  
65\|      with And(f"check that 0 rows were read"):
66\|          read_rows = metrics.get_read_rows(
67\|              log_comment=log_comment_with_pruning,
68\|          )
69\|>         assert int(read_rows.output.strip()) == 0, error(
70\|              f"Expected 0 rows to be read, with where clause: {where_clause}, but got {read_rows.output.strip()}"
71\|          )
72\|

Results

Test Name Result Duration
/iceberg OK 57m 9s
/iceberg/iceberg engine OK 53m 52s
/iceberg/iceberg engine/rest catalog OK 53m 52s
/iceberg/iceberg engine/rest catalog/feature OK 40s 715ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 4s 91ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 11s 579ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 2s 58ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 329ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 3s 639ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 443ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 486ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 665ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 702ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 2s 967ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 1s 917ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 825ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 1s 970ms
/iceberg/iceberg engine/rest catalog/feature/select from system databases OK 2s 29ms
/iceberg/iceberg engine/rest catalog/feature OK 10s 950ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 1s 932ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 565ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 2s 879ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 512ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 497ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 1s 559ms
/iceberg/iceberg engine/rest catalog/column rbac OK 6m 14s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 3s 813ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 3s 704ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 3s 371ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 3s 679ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 3s 683ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 3s 401ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 3s 669ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 3s 579ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 3s 545ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 4s 76ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 3s 767ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 3s 617ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 3s 486ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 3s 568ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 3s 486ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 4s 851ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 4s 237ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 3s 746ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 3s 369ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 3s 594ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 3s 713ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 3s 448ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 3s 576ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 3s 383ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 3s 749ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 3s 518ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 3s 700ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 3s 622ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 3s 678ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 3s 896ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 3s 564ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 3s 580ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 3s 422ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 3s 906ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 3s 582ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 3s 453ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 3s 367ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 3s 747ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 3s 529ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 3s 444ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 3s 662ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 3s 399ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 4s 274ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 3s 794ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 3s 482ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 4s 37ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 3s 570ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 3s 800ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 3s 409ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 3s 617ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 3s 494ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 4s 150ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 3s 482ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 3s 927ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 3s 478ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 3s 385ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 3s 321ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 3s 681ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 3s 814ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 3s 541ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 4s 115ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 3s 578ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 3s 533ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 3s 571ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 3s 474ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 3s 556ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 3s 739ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 4s 274ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 3s 907ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 3s 614ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 3s 434ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 3s 781ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 3s 785ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 3s 554ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 3s 400ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 3s 638ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 4s 163ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 3s 433ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 4s 813ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 3s 556ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 3s 512ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 3s 572ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 3s 780ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 4s 42ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 3s 641ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 3s 891ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 3s 491ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 3s 881ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 3s 546ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 3s 702ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 3s 963ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 5s 6ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 3s 836ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 3s 370ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 3s 569ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 3s 541ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 3s 547ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 4s 840ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 3s 472ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 4s 15ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 43s 324ms
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 39s 189ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 2s 70ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 2s 60ms
/iceberg/iceberg engine/rest catalog/rbac OK 6s 502ms
/iceberg/iceberg engine/rest catalog/rbac/select privilege OK 2s 108ms
/iceberg/iceberg engine/rest catalog/rbac/drop table privilege OK 2s 288ms
/iceberg/iceberg engine/rest catalog/rbac/drop database privilege OK 2s 104ms
/iceberg/iceberg engine/rest catalog/row policy OK 1m 0s
/iceberg/iceberg engine/rest catalog/row policy/row policies OK 1m 0s
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #0 OK 484ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #1 OK 626ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #2 OK 617ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #3 OK 517ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #4 OK 559ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #5 OK 654ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #6 OK 695ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #7 OK 576ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #8 OK 645ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #9 OK 640ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #10 OK 614ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #11 OK 486ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #12 OK 585ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #13 OK 478ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #14 OK 468ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #15 OK 461ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #16 OK 458ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #17 OK 686ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #18 OK 631ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #19 OK 481ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #20 OK 589ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #21 OK 531ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #22 OK 540ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #23 OK 610ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #24 OK 632ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #25 OK 470ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #26 OK 587ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #27 OK 617ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #28 OK 547ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #29 OK 635ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #30 OK 629ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #31 OK 545ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #32 OK 470ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #33 OK 614ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #34 OK 636ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #35 OK 473ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #36 OK 586ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #37 OK 581ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #38 OK 606ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #39 OK 459ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #40 OK 477ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #41 OK 546ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #42 OK 462ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #43 OK 610ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #44 OK 513ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #45 OK 608ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #46 OK 593ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #47 OK 537ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #48 OK 594ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #49 OK 537ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #50 OK 468ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #51 OK 612ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #52 OK 514ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #53 OK 604ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #54 OK 563ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #55 OK 555ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #56 OK 616ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #57 OK 616ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #58 OK 584ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #59 OK 464ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #60 OK 597ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #61 OK 623ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #62 OK 600ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #63 OK 465ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #64 OK 647ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #65 OK 522ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #66 OK 563ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #67 OK 635ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #68 OK 542ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #69 OK 558ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #70 OK 620ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #71 OK 490ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #72 OK 623ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #73 OK 562ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #74 OK 608ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #75 OK 601ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #76 OK 573ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #77 OK 544ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #78 OK 473ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #79 OK 626ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #80 OK 621ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #81 OK 613ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #82 OK 472ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #83 OK 532ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #84 OK 570ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #85 OK 564ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #86 OK 474ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #87 OK 607ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #88 OK 617ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #89 OK 617ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #90 OK 496ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #91 OK 462ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #92 OK 550ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #93 OK 630ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #94 OK 471ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #95 OK 618ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #96 OK 657ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #97 OK 561ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #98 OK 564ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #99 OK 609ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 3s 715ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 406ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 73ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 105ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 103ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 196ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 100ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 576ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 495ms
/iceberg/iceberg engine/rest catalog/equality delete reads OK 19m 49s
/iceberg/iceberg engine/rest catalog/equality delete reads/run equality deletes combinations OK 19m 49s
/iceberg/iceberg engine/rest catalog/position delete reads OK 2s 454ms
/iceberg/iceberg engine/rest catalog/position delete reads/read position deletes OK 2s 453ms
/iceberg/iceberg engine/rest catalog/overwrite OK 4s 139ms
/iceberg/iceberg engine/rest catalog/overwrite/overwrite OK 2s 103ms
/iceberg/iceberg engine/rest catalog/overwrite/append OK 2s 35ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 13m 29s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 8s 29ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 8s 467ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 8s 725ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 7s 840ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 7s 854ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 7s 866ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 7s 669ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 8s 307ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 8s 59ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 7s 736ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 7s 778ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 8s 413ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 8s 375ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 8s 180ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 8s 422ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 7s 639ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 8s 22ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 8s 57ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 8s 127ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 7s 833ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 8s 517ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 7s 769ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 8s 104ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 8s 361ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 7s 893ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 8s 86ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 7s 644ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 8s 345ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 7s 994ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 8s 153ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 7s 984ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 8s 165ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 8s 437ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 8s 182ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 8s 44ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 7s 989ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 8s 641ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 8s 170ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 7s 902ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 8s 328ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 7s 662ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 8s 128ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 7s 777ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 7s 710ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 8s 277ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 7s 877ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 7s 821ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 8s 59ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 8s 555ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 7s 693ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 8s 321ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 8s 495ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 8s 222ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 8s 272ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 7s 815ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 8s 264ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 8s 283ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 8s 226ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 7s 855ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 8s 627ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 8s 493ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 8s 1ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 7s 744ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 8s 2ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 8s 260ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 8s 212ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 8s 925ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 7s 424ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 8s 242ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 7s 488ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 8s 312ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 8s 173ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 9s 138ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 8s 752ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 7s 932ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 8s 416ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 7s 881ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 7s 637ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 8s 421ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 8s 26ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 8s 171ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 8s 13ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 8s 256ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 7s 648ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 8s 301ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 7s 927ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 7s 912ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 8s 21ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 7s 582ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 7s 822ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 7s 988ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 8s 316ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 7s 915ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 8s 30ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 7s 703ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 8s 138ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 8s 263ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 7s 791ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 8s 41ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 8s 327ms
/iceberg/iceberg engine/rest catalog/swarm OK 2s 191ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 190ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 1m 45s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 1s 904ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 316ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 2s 599ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 2s 906ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 3s 257ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 3s 870ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 3s 897ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 4s 184ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 4s 615ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 4s 822ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 5s 445ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 5s 867ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 6s 263ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 6s 507ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 6s 635ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 7s 424ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 7s 532ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 7s 807ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 8s 502ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 8s 949ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 8m 33s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 4s 977ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 5s 32ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 4s 967ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 4s 942ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 5s 133ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 5s 222ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 5s 503ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 5s 521ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 5s 686ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 5s 804ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 5s 677ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 4s 945ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 5s 96ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 5s 65ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 4s 993ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 4s 925ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 5s 130ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 5s 183ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 5s 4ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 5s 201ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 4s 947ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 4s 995ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 5s 172ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 5s 144ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 4s 940ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 4s 865ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 4s 912ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 5s 133ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 5s 40ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 5s 78ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 5s 23ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 5s 270ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 5s 141ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 5s 46ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 5s 239ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 5s 309ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 4s 841ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 5s 212ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 5s 306ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 4s 886ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 5s 189ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 5s 123ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 5s 179ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 5s 129ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 5s 48ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 5s 213ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 5s 100ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 5s 25ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 5s 191ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 5s 88ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 5s 172ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 4s 958ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 5s 309ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 5s 110ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 5s 43ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 5s 250ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 5s 130ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 4s 914ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 5s 227ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 5s 231ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 5s 80ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 5s 233ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 5s 370ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 353ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 5s 73ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 5s 342ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 5s 301ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 5s 254ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 5s 275ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 5s 180ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 5s 206ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 5s 58ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 5s 4ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 5s 230ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 5s 356ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 5s 138ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 4s 952ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 4s 905ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 4s 931ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 5s 135ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 5s 74ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 5s 84ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 5s 47ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 5s 4ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 5s 142ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 4s 813ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 5s 77ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 4s 843ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 4s 920ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 5s 387ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 5s 93ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 5s 93ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 5s 89ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 4s 864ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 5s 126ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 5s 179ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 5s 244ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 5s 119ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 5s 116ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 5s 174ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 54s 151ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type OK 39s 664ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause OK 4s 62ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type OK 3s 982ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 6s 440ms
/iceberg/iceberg engine/rest catalog/datatypes OK 10s 961ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 10s 960ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 2ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition Skip 1ms
/iceberg/iceberg engine/rest catalog/dot separated column names OK 3ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names Skip 1ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns Skip 957us
/iceberg/iceberg engine/rest catalog/sort key timezone OK 9ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and utc timezone Skip 1ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with hour transform and utc timezone Skip 862us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with month transform and utc timezone Skip 839us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with year transform and utc timezone Skip 900us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and positive utc offset timezone Skip 1ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and negative utc offset timezone Skip 867us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and timestamptz type Skip 841us
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint OK 1ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint/similar table names hint Skip 1ms
/iceberg/s3 table function OK 1s 496ms
/iceberg/s3 table function/s3 table function OK 1s 496ms
/iceberg/icebergS3 table function OK 55s 738ms
/iceberg/icebergS3 table function/rest catalog OK 27s 918ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 27s 904ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 1s 626ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 675ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 1s 724ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 22s 876ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir Skip 1ms
/iceberg/icebergS3 table function/glue catalog OK 27s 817ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 27s 813ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 575ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 684ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 1s 723ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 22s 828ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir Skip 2ms
/iceberg/iceberg cache OK 3ms
/iceberg/iceberg cache/rest catalog Skip 1ms
/iceberg/iceberg cache/glue catalog Skip 1ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922