Iceberg Test Run Report

DateNov 26, 2025 20:02
Duration1h 4m
Framework TestFlows 2.0.250110.1002922

Artifacts

Test artifacts can be found at https://altinity-build-artifacts.s3.amazonaws.com/index.html#REFs/rebase-cicd-v25.8.12.129-lts/3ddf55f6ce31a671eb832cdf3630cc5b9aebf734/regression/aarch64/with_analyzer/zookeeper/without_thread_fuzzer/iceberg1/

Attributes

projectAltinity/ClickHouse
project.id159717931
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/rebase-cicd-v25.8.12.129-lts/3ddf55f6ce31a671eb832cdf3630cc5b9aebf734/build_arm_binary/clickhouse
version25.8.12.20133.altinityantalya
user.namestrtgbb
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hashfc19ce3a7322a10ab791de755c950a56744a12e7
job.nameIceberg (1)
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/19715009996
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/rebase-cicd-v25.8.12.129-lts/3ddf55f6ce31a671eb832cdf3630cc5b9aebf734/build_arm_binary/clickhouse
as_binaryFalse
base_osNone
keeper_pathNone
zookeeper_versionNone
use_keeperFalse
stressFalse
collect_service_logsTrue
thread_fuzzerFalse
with_analyzerTrue
reuse_envFalse
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 OK Fail XFail
Modules
1
1
Features
21
21
Scenarios
463
461
2
Checks
100
100
Steps
53039
53005
4
30

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal columnXFail 1s 971ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 211, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 171, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 442, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 184, 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 547, in feature
    Scenario(test=issue_with_decimal_column)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 453, 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 68, 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",
          )
          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 68 in 'check_read_with_predicate_push_down'

60\|              use_iceberg_partition_pruning="0",
61\|          )
62\|          assert result.output.strip() == "", error()
63\|  
64\|      with And(f"check that 0 rows were read"):
65\|          read_rows = metrics.get_read_rows(
66\|              log_comment=log_comment_with_pruning,
67\|          )
68\|>         assert int(read_rows.output.strip()) == 0, error(
69\|              f"Expected 0 rows to be read, with where clause: {where_clause}, but got {read_rows.output.strip()}"
70\|          )
71\|
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float columnXFail 1s 898ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 211, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 171, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 442, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 184, 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 550, in feature
    Scenario(test=issue_with_float_column)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 523, 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 68, 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",
          )
          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 68 in 'check_read_with_predicate_push_down'

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

Results

Test Name Result Duration
/iceberg OK 1h 4m
/iceberg/iceberg engine OK 59m 56s
/iceberg/iceberg engine/rest catalog OK 59m 56s
/iceberg/iceberg engine/rest catalog/feature OK 31s 421ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 4s 415ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 12s 961ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 1s 964ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 137ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 3s 856ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 406ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 439ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 610ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 622ms
/iceberg/iceberg engine/rest catalog/feature OK 11s 193ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 2s 147ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 548ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 3s 136ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 445ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 483ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 1s 427ms
/iceberg/iceberg engine/rest catalog/column rbac OK 7m 9s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 4s 352ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 4s 214ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 3s 968ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 4s 212ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 4s 195ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 4s 61ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 4s 257ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 4s 158ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 4s 122ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 4s 546ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 4s 308ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 4s 212ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 4s 133ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 4s 172ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 4s 62ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 5s 147ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 4s 667ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 4s 398ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 4s 39ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 4s 74ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 4s 248ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 4s 56ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 4s 183ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 4s 37ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 4s 303ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 4s 36ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 4s 195ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 4s 141ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 4s 169ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 4s 380ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 4s 206ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 4s 166ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 4s 31ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 4s 337ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 4s 214ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 3s 997ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 4s 22ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 4s 160ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 4s 67ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 4s 138ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 4s 339ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 4s 126ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 4s 750ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 4s 235ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 4s 48ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 4s 426ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 4s 42ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 4s 501ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 4s 21ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 4s 116ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 4s 165ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 4s 606ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 4s 25ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 4s 364ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 4s 11ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 4s 43ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 3s 958ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 4s 244ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 4s 384ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 4s 160ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 4s 524ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 4s 136ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 4s 40ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 4s 141ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 4s 39ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 4s 40ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 4s 10ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 4s 733ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 4s 438ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 4s 135ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 4s 101ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 4s 282ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 4s 316ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 4s 110ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 4s 183ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 4s 352ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 4s 639ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 4s 29ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 5s 242ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 4s 207ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 4s 131ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 4s 227ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 4s 241ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 4s 478ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 4s 288ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 4s 485ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 4s 108ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 4s 469ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 4s 9ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 4s 174ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 4s 388ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 5s 283ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 4s 464ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 3s 987ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 4s 252ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 4s 244ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 4s 222ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 5s 287ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 4s 91ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 4s 532ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 1m 32s
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 1m 28s
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 1s 971ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 1s 898ms
/iceberg/iceberg engine/rest catalog/feature OK 6s 379ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 2s 45ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 2s 274ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 2s 54ms
/iceberg/iceberg engine/rest catalog/feature OK 1m 8s
/iceberg/iceberg engine/rest catalog/feature/row policies OK 1m 8s
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 606ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 815ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 648ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 583ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 675ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 695ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 663ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 639ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 691ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 684ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 669ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 615ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 634ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 570ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 564ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 564ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 591ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 699ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 679ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 605ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 617ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 638ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 621ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 715ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 676ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 575ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 737ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 684ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 622ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 666ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 675ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 622ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 598ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 682ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 679ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 584ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 659ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 618ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 694ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 580ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 595ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 628ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 570ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 691ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 624ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 681ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 701ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 629ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 688ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 625ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 584ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 703ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 622ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 682ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 686ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 634ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 693ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 711ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 695ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 577ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 662ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 673ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 688ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 594ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 673ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 640ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 627ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 707ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 624ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 623ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 693ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 583ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 684ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 625ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 704ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 655ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 607ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 622ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 564ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 675ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 681ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 654ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 559ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 651ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 650ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 619ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 566ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 680ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 682ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 694ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 616ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 580ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 627ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 675ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 559ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 649ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 663ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 627ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 623ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 623ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 3s 959ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 481ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 114ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 119ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 117ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 223ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 116ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 640ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 574ms
/iceberg/iceberg engine/rest catalog/feature OK 21m 13s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 21m 13s
/iceberg/iceberg engine/rest catalog/feature OK 4s 191ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 2s 129ms
/iceberg/iceberg engine/rest catalog/feature/append OK 2s 60ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 16m 15s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 9s 729ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 10s 103ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 10s 374ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 9s 610ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 9s 608ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 9s 511ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 9s 218ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 9s 720ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 9s 814ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 9s 436ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 9s 451ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 10s 41ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 9s 756ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 9s 789ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 9s 875ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 9s 459ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 9s 628ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 9s 534ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 9s 721ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 9s 260ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 9s 997ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 9s 275ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 9s 659ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 10s 51ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 9s 415ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 9s 595ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 9s 46ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 10s 564ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 9s 665ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 9s 835ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 9s 490ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 9s 742ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 9s 959ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 9s 664ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 10s 19ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 9s 688ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 10s 394ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 9s 802ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 9s 679ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 10s 499ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 9s 536ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 9s 719ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 9s 610ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 9s 208ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 9s 487ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 9s 375ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 9s 398ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 9s 674ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 9s 914ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 9s 95ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 9s 857ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 10s 168ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 10s 196ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 9s 870ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 9s 353ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 9s 836ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 9s 629ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 9s 734ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 9s 521ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 10s 443ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 10s 208ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 9s 589ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 9s 493ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 9s 832ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 9s 998ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 9s 972ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 9s 565ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 8s 994ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 10s 192ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 9s 222ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 10s 95ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 9s 890ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 12s 16ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 10s 542ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 9s 876ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 10s 237ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 9s 692ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 9s 281ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 10s 320ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 9s 776ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 9s 852ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 9s 574ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 10s 138ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 9s 300ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 10s 143ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 9s 520ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 9s 788ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 9s 803ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 9s 313ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 9s 556ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 9s 637ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 10s 9ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 9s 537ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 9s 619ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 9s 299ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 9s 858ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 9s 909ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 9s 389ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 9s 605ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 9s 891ms
/iceberg/iceberg engine/rest catalog/swarm OK 2s 136ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 135ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 1m 50s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 1s 984ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 604ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 2s 823ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 3s 324ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 3s 464ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 3s 736ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 4s 204ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 4s 606ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 4s 894ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 5s 202ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 5s 519ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 6s 111ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 6s 470ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 6s 700ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 7s 135ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 7s 928ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 8s 95ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 8s 438ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 8s 449ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 9s 238ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 8m 26s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 4s 966ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 5s 98ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 4s 931ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 4s 996ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 5s 42ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 5s 200ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 5s 131ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 5s 123ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 5s 127ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 5s 39ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 5s 107ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 4s 915ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 5s 64ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 4s 957ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 4s 846ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 4s 999ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 5s 101ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 5s 160ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 4s 921ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 5s 162ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 4s 996ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 4s 977ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 5s 14ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 5s 76ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 4s 792ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 4s 795ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 4s 961ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 5s 181ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 4s 932ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 4s 971ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 5s 98ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 5s 140ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 5s 31ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 4s 948ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 5s 18ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 5s 40ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 4s 859ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 5s 176ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 5s 53ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 5s 136ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 5s 280ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 5s 110ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 4s 910ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 4s 984ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 4s 937ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 5s 153ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 4s 930ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 5s 18ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 4s 862ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 5s 10ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 5s 120ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 5s 294ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 5s 292ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 5s 171ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 5s 38ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 5s 231ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 5s 66ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 4s 933ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 5s 211ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 5s 155ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 5s 33ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 4s 942ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 5s 175ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 203ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 5s 97ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 5s 282ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 5s 58ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 5s 64ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 5s 125ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 5s 154ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 5s 267ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 5s 78ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 4s 917ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 5s 386ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 5s 316ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 5s 322ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 5s 132ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 4s 864ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 4s 813ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 5s 75ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 5s 36ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 5s 94ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 5s 50ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 4s 944ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 5s 48ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 5s 62ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 5s 205ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 4s 968ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 5s 34ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 5s 173ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 5s 71ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 4s 942ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 5s 74ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 4s 859ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 5s 10ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 5s 167ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 5s 316ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 5s 291ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 5s 192ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 5s 149ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 1m 5s
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type OK 47s 708ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause OK 5s 146ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type OK 4s 934ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 7s 662ms
/iceberg/iceberg engine/rest catalog/datatypes OK 13s 41ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 13s 41ms
/iceberg/s3 table function OK 1s 519ms
/iceberg/s3 table function/s3 table function OK 1s 518ms
/iceberg/icebergS3 table function OK 6s 526ms
/iceberg/icebergS3 table function/sanity OK 1s 615ms
/iceberg/icebergS3 table function/recreate table OK 1s 568ms
/iceberg/icebergS3 table function/recreate table and insert new data OK 1s 736ms
/iceberg/icebergS3 table function/recreate table and insert new data multiple times OK 1s 603ms
/iceberg/iceberg cache OK 3ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922