Iceberg Test Run Report

DateJul 07, 2026 3:52
Duration1h 3m
Framework TestFlows 2.0.250110.1002922

Artifacts

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

Attributes

projectAltinity/ClickHouse
project.id159717931
user.namestrtgbb
version25.8.23.10001.altinitytest
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/stable-25.8/29f8caa8140cbb64698641b11d83c74c3c7299f2/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash979bb27171f92724bcd8f086989ba623f2e03fdc
job.nameiceberg_1
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/28837216389
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/stable-25.8/29f8caa8140cbb64698641b11d83c74c3c7299f2/build_arm_binary/clickhouse
as_binaryFalse
base_osNone
keeper_pathNone
zookeeper_versionNone
use_keeperFalse
stressFalse
collect_service_logsTrue
thread_fuzzerFalse
with_analyzerTrue
reuse_envFalse
cicdTrue
minio_uriSecret(name='minio_uri')
minio_root_userSecret(name='minio_root_user')
minio_root_passwordSecret(name='minio_root_password')

Summary

99.4%OK
<1%Known

Statistics

Units Skip OK Fail XFail
Modules
1
1
Features
35
2
33
Scenarios
474
1
471
2
Checks
340
340
Steps
54229
54194
4
31

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal columnXFail 1s 933ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 350, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 324, 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 1s 935ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 350, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 324, 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 1h 3m
/iceberg/iceberg engine OK 58m 43s
/iceberg/iceberg engine/rest catalog OK 58m 43s
/iceberg/iceberg engine/rest catalog/feature OK 37s 965ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 4s 688ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 12s 718ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 1s 876ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 25ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 3s 774ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 393ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 387ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 555ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 530ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 1s 876ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 1s 814ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 680ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 1s 635ms
/iceberg/iceberg engine/rest catalog/feature OK 11s 70ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 2s 116ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 505ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 3s 134ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 435ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 424ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 1s 450ms
/iceberg/iceberg engine/rest catalog/column rbac OK 7m 19s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 4s 305ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 4s 279ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 4s 6ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 4s 353ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 4s 265ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 4s 108ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 4s 358ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 4s 469ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 4s 186ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 4s 819ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 4s 440ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 4s 214ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 4s 145ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 4s 274ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 4s 77ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 5s 388ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 4s 801ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 4s 359ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 3s 955ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 4s 66ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 4s 255ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 4s 261ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 4s 416ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 4s 26ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 4s 321ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 3s 986ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 4s 279ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 4s 184ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 4s 398ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 4s 539ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 4s 178ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 4s 219ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 4s 6ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 4s 476ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 4s 182ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 4s 80ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 4s 17ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 4s 164ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 4s 107ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 4s 127ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 4s 570ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 4s 99ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 4s 878ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 4s 286ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 4s 89ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 4s 675ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 4s 149ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 4s 550ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 4s 4ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 4s 399ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 4s 98ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 4s 767ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 4s 58ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 4s 353ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 4s 8ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 4s 39ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 3s 975ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 4s 345ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 4s 508ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 4s 197ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 4s 661ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 4s 193ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 4s 88ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 4s 227ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 4s 61ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 4s 205ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 4s 182ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 5s 161ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 4s 772ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 4s 144ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 4s 195ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 4s 454ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 4s 452ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 4s 99ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 4s 68ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 4s 354ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 4s 830ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 4s 17ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 5s 604ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 4s 337ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 4s 246ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 4s 349ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 4s 434ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 4s 561ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 4s 422ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 4s 617ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 4s 176ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 4s 703ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 4s 52ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 4s 319ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 4s 602ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 5s 635ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 4s 975ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 4s 173ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 4s 533ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 4s 280ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 4s 365ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 5s 628ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 4s 630ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 4s 675ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 1m 10s
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 1m 6s
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 1s 933ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 1s 935ms
/iceberg/iceberg engine/rest catalog/feature OK 6s 143ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 2s 2ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 2s 186ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 1s 953ms
/iceberg/iceberg engine/rest catalog/feature OK 1m 10s
/iceberg/iceberg engine/rest catalog/feature/row policies OK 1m 10s
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 636ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 876ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 647ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 580ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 672ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 756ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 667ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 645ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 743ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 728ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 681ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 598ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 658ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 574ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 590ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 580ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 586ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 727ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 721ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 599ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 642ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 654ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 641ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 718ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 747ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 584ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 792ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 723ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 673ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 735ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 726ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 636ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 606ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 718ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 721ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 571ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 675ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 632ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 755ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 569ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 571ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 644ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 571ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 720ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 646ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 733ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 746ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 658ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 733ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 663ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 576ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 729ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 640ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 736ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 660ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 666ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 740ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 727ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 729ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 573ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 684ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 738ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 712ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 572ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 731ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 661ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 657ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 728ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 637ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 645ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 718ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 574ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 728ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 654ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 719ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 651ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 662ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 652ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 579ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 691ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 751ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 705ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 577ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 636ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 669ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 656ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 590ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 711ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 730ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 719ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 601ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 574ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 638ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 726ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 634ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 656ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 744ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 675ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 654ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 638ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 3s 921ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 457ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 114ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 115ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 116ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 226ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 113ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 637ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 591ms
/iceberg/iceberg engine/rest catalog/feature OK 20m 46s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 20m 46s
/iceberg/iceberg engine/rest catalog/feature OK 4s 184ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 2s 145ms
/iceberg/iceberg engine/rest catalog/feature/append OK 2s 37ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 15m 47s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 9s 287ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 9s 634ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 9s 576ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 9s 255ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 9s 247ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 9s 172ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 9s 174ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 9s 581ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 9s 336ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 9s 319ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 9s 427ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 9s 689ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 9s 541ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 9s 718ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 9s 781ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 9s 323ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 9s 506ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 9s 474ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 9s 620ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 9s 270ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 9s 947ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 9s 207ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 9s 668ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 9s 551ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 9s 384ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 9s 445ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 9s 400ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 9s 683ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 9s 334ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 9s 465ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 9s 346ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 9s 593ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 9s 643ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 9s 442ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 9s 400ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 9s 231ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 9s 559ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 9s 444ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 9s 213ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 9s 560ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 9s 214ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 9s 360ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 9s 268ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 9s 205ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 9s 277ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 9s 411ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 9s 376ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 9s 354ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 9s 416ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 9s 300ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 9s 518ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 9s 614ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 9s 846ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 9s 308ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 9s 414ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 9s 502ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 9s 525ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 9s 565ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 9s 601ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 9s 595ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 9s 746ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 9s 329ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 9s 358ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 9s 151ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 9s 594ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 9s 427ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 9s 162ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 9s 110ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 9s 580ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 9s 460ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 9s 503ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 9s 681ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 9s 827ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 9s 723ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 9s 614ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 9s 594ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 9s 277ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 9s 14ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 9s 687ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 9s 834ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 9s 713ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 9s 542ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 10s 79ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 9s 572ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 9s 834ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 9s 479ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 9s 547ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 9s 527ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 9s 805ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 9s 362ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 9s 535ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 9s 544ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 9s 220ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 9s 459ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 9s 146ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 9s 445ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 9s 586ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 9s 26ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 9s 148ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 9s 692ms
/iceberg/iceberg engine/rest catalog/swarm OK 2s 149ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 148ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 1m 46s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 2s 114ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 405ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 2s 849ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 2s 944ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 3s 357ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 3s 588ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 3s 952ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 4s 554ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 4s 695ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 5s 55ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 5s 649ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 5s 614ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 6s 311ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 6s 654ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 6s 675ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 7s 427ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 7s 411ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 7s 992ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 8s 611ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 8s 838ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 8m 5s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 4s 593ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 4s 872ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 4s 759ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 4s 850ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 4s 773ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 4s 789ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 4s 877ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 5s 47ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 4s 880ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 4s 806ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 4s 901ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 4s 715ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 4s 750ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 4s 812ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 4s 764ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 4s 716ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 5s 17ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 4s 929ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 4s 707ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 5s 65ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 4s 953ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 4s 732ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 4s 943ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 4s 985ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 4s 575ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 4s 558ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 4s 884ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 4s 776ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 4s 723ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 4s 763ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 4s 855ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 4s 817ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 4s 985ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 4s 870ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 4s 967ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 4s 803ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 4s 681ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 4s 898ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 4s 876ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 4s 696ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 4s 980ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 4s 791ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 4s 842ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 4s 790ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 4s 731ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 4s 912ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 4s 716ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 4s 761ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 4s 683ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 4s 844ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 5s 65ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 4s 821ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 4s 916ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 4s 768ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 4s 711ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 4s 936ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 4s 816ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 4s 754ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 4s 883ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 4s 994ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 4s 823ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 4s 784ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 4s 851ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 113ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 4s 788ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 4s 985ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 4s 889ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 4s 872ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 4s 864ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 4s 911ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 4s 970ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 4s 711ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 4s 603ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 4s 891ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 5s 22ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 5s 67ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 4s 732ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 4s 595ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 4s 634ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 4s 729ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 4s 740ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 4s 919ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 4s 973ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 4s 867ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 4s 752ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 4s 638ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 4s 899ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 4s 708ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 4s 831ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 4s 969ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 4s 924ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 4s 766ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 4s 875ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 5s 22ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 5s 318ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 5s 114ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 5s 252ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 5s 155ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 5s 140ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 4s 892ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 1m 14s
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type OK 56s 683ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause OK 5s 94ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type OK 5s 31ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 7s 397ms
/iceberg/iceberg engine/rest catalog/datatypes OK 12s 554ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 12s 554ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 1ms
/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 3s 343ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 1s 545ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 1s 796ms
/iceberg/s3 table function OK 1s 426ms
/iceberg/s3 table function/s3 table function OK 1s 425ms
/iceberg/icebergS3 table function OK 1m 51s
/iceberg/icebergS3 table function/rest catalog OK 52s 937ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 27s 711ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 1s 647ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 627ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 1s 654ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 22s 780ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 25s 213ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 10s 869ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 586ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 574ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 787ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 16ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 269ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 676ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 693ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 475ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 235ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 199ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 173ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 190ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 205ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 203ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 160ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 196ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 186ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 174ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 168ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 146ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 690ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 715ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 891ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 92ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 326ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 714ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 666ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 497ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 304ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 170ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 259ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 237ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 243ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 229ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 225ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 280ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 276ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 232ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 267ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 203ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 456ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 641ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 869ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 64ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 301ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 859ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 691ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 456ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 250ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 143ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 153ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 160ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 145ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 155ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 108ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 138ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 124ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 130ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 122ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 121ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 14s 342ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 713ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 700ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 57ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 259ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 545ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 873ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 853ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 507ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 273ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 299ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 270ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 250ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 255ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 260ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 247ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 244ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 235ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 245ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 238ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 164ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 711ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 724ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 906ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 120ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 409ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 733ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 695ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 524ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 303ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 344ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 346ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 361ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 308ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 318ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 221ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 311ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 303ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 309ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 281ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 195ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 442ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 658ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 849ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 49ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 323ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 895ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 668ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 451ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 283ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 162ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 202ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 188ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 163ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 173ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 143ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 173ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 191ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 184ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 197ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 139ms
/iceberg/icebergS3 table function/glue catalog OK 58s 246ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 27s 678ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 622ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 667ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 22s 765ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 1s 620ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 30s 566ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 15s 125ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 663ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 662ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 849ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 48ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 271ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 645ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 625ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 440ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 455ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 358ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 362ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 364ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 381ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 168ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 186ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 196ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 196ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 168ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 167ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 155ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 678ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 696ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 878ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 88ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 373ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 734ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 696ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 533ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 306ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 230ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 265ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 223ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 254ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 238ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 201ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 253ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 229ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 220ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 220ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 173ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 435ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 650ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 842ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 40ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 272ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 874ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 614ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 473ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 265ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 113ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 117ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 141ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 132ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 120ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 115ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 117ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 131ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 116ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 124ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 114ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 15s 439ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 705ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 696ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 867ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 67ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 336ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 638ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 663ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 469ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 280ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 290ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 279ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 236ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 254ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 248ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 170ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 255ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 247ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 240ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 244ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 171ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 683ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 698ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 883ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 104ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 464ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 780ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 769ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 583ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 305ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 209ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 296ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 303ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 270ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 292ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 295ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 301ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 289ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 282ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 277ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 222ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 453ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 665ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 869ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 70ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 355ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 923ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 688ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 472ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 282ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 182ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 188ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 203ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 188ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 176ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 182ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 188ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 194ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 171ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 177ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 115ms
/iceberg/iceberg cache OK 4ms
/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