Iceberg Test Run Report

DateMar 18, 2026 23:45
Duration1h 6m
Framework TestFlows 2.0.250110.1002922

Artifacts

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

Attributes

projectAltinity/ClickHouse
project.id159717931
user.nameMyroTk
version25.8.16.10002.altinitystable
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/v25.8.16.10002.altinitystable/c63afbef60f93b08179bb2f2727c8cc77391d3cc/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash979bb27171f92724bcd8f086989ba623f2e03fdc
job.namesuite
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/23265050380
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/v25.8.16.10002.altinitystable/c63afbef60f93b08179bb2f2727c8cc77391d3cc/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
54291
54256
4
31

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal columnXFail 1s 857ms
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 895ms
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 6m
/iceberg/iceberg engine OK 59m 38s
/iceberg/iceberg engine/rest catalog OK 59m 38s
/iceberg/iceberg engine/rest catalog/feature OK 38s 686ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 4s 361ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 12s 883ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 1s 984ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 120ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 3s 845ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 502ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 467ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 680ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 648ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 1s 905ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 1s 865ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 717ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 1s 698ms
/iceberg/iceberg engine/rest catalog/feature OK 11s 63ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 2s 113ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 493ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 3s 175ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 448ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 413ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 1s 416ms
/iceberg/iceberg engine/rest catalog/column rbac OK 7m 26s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 4s 377ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 4s 327ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 4s 46ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 4s 400ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 4s 339ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 4s 247ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 4s 425ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 4s 248ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 4s 353ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 4s 902ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 4s 512ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 4s 386ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 4s 249ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 4s 324ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 4s 159ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 5s 540ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 4s 889ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 4s 444ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 4s 101ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 4s 218ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 4s 448ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 4s 188ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 4s 345ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 4s 127ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 4s 447ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 4s 116ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 4s 360ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 4s 314ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 4s 479ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 4s 727ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 4s 410ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 4s 309ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 4s 181ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 4s 596ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 4s 311ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 4s 145ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 4s 160ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 4s 306ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 4s 228ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 4s 248ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 4s 506ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 4s 133ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 5s 81ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 4s 453ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 4s 375ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 4s 837ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 4s 194ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 4s 639ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 4s 75ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 4s 241ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 4s 181ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 4s 892ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 4s 140ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 4s 467ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 4s 61ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 4s 106ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 4s 91ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 4s 443ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 4s 578ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 4s 329ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 4s 837ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 4s 351ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 4s 252ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 4s 386ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 4s 143ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 4s 282ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 4s 122ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 5s 22ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 4s 688ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 4s 214ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 4s 168ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 4s 509ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 4s 487ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 4s 144ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 4s 160ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 4s 453ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 4s 976ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 4s 134ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 5s 843ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 4s 411ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 4s 227ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 4s 383ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 4s 297ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 4s 607ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 4s 335ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 4s 597ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 4s 235ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 4s 568ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 4s 48ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 4s 285ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 4s 577ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 5s 719ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 4s 642ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 4s 70ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 4s 349ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 4s 268ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 4s 341ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 5s 831ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 4s 291ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 4s 934ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 1m 27s
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 1m 23s
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 1s 857ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 1s 895ms
/iceberg/iceberg engine/rest catalog/feature OK 6s 183ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 1s 990ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 2s 214ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 1s 977ms
/iceberg/iceberg engine/rest catalog/feature OK 1m 11s
/iceberg/iceberg engine/rest catalog/feature/row policies OK 1m 11s
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 626ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 899ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 642ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 575ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 706ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 725ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 677ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 652ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 745ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 725ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 689ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 624ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 650ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 580ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 593ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 584ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 605ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 717ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 715ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 619ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 660ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 644ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 646ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 733ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 725ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 592ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 770ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 741ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 670ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 774ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 765ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 684ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 623ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 740ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 767ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 610ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 685ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 651ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 733ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 594ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 624ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 693ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 600ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 749ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 662ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 742ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 746ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 676ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 729ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 666ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 577ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 731ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 691ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 726ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 681ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 665ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 745ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 744ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 721ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 587ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 685ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 730ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 710ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 572ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 739ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 674ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 658ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 754ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 654ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 658ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 737ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 602ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 746ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 669ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 727ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 645ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 650ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 657ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 577ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 707ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 734ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 681ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 581ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 657ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 693ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 658ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 597ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 721ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 751ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 720ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 610ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 591ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 658ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 720ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 566ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 651ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 729ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 646ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 669ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 684ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 3s 854ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 483ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 119ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 114ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 104ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 220ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 115ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 621ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 547ms
/iceberg/iceberg engine/rest catalog/feature OK 20m 59s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 20m 59s
/iceberg/iceberg engine/rest catalog/feature OK 4s 261ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 2s 133ms
/iceberg/iceberg engine/rest catalog/feature/append OK 2s 126ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 16m 1s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 9s 823ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 9s 687ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 9s 791ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 9s 510ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 9s 424ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 9s 373ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 9s 198ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 9s 572ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 9s 570ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 9s 172ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 9s 250ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 9s 636ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 9s 521ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 9s 497ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 9s 682ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 9s 443ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 9s 583ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 9s 409ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 9s 538ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 9s 225ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 9s 599ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 9s 242ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 9s 533ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 9s 876ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 9s 345ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 9s 312ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 9s 90ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 9s 773ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 9s 341ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 9s 536ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 9s 596ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 9s 762ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 9s 697ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 9s 439ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 9s 642ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 9s 358ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 9s 821ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 9s 512ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 9s 492ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 9s 696ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 9s 454ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 9s 482ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 9s 412ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 9s 237ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 9s 489ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 9s 386ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 10s 387ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 9s 447ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 10s 103ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 9s 526ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 9s 791ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 10s 35ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 9s 994ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 9s 761ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 9s 476ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 9s 533ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 9s 609ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 9s 482ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 9s 580ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 9s 905ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 9s 755ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 9s 871ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 9s 421ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 9s 403ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 9s 838ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 10s 27ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 9s 728ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 9s 199ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 10s 70ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 9s 825ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 9s 903ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 9s 790ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 10s 90ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 9s 966ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 9s 789ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 9s 877ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 9s 779ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 9s 130ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 9s 756ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 9s 701ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 9s 629ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 9s 568ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 9s 711ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 9s 552ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 10s 151ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 9s 651ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 9s 569ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 9s 544ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 9s 491ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 9s 640ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 9s 602ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 9s 847ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 9s 628ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 9s 668ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 9s 482ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 9s 778ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 9s 733ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 9s 480ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 9s 661ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 9s 934ms
/iceberg/iceberg engine/rest catalog/swarm OK 2s 230ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 229ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 1m 49s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 2s 93ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 626ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 2s 798ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 3s 166ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 3s 362ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 3s 888ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 4s 67ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 4s 526ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 4s 832ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 5s 392ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 5s 421ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 5s 516ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 6s 256ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 6s 791ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 7s 110ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 7s 678ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 8s 177ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 8s 303ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 8s 452ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 9s 107ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 8m 10s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 4s 648ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 4s 966ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 4s 982ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 4s 953ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 5s 68ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 5s 160ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 5s 228ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 5s 77ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 4s 959ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 4s 887ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 5s 62ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 4s 797ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 4s 864ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 4s 936ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 4s 979ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 4s 938ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 5s 28ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 5s 80ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 4s 830ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 5s 27ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 4s 952ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 4s 849ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 4s 868ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 4s 902ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 4s 708ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 4s 699ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 4s 848ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 4s 802ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 4s 762ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 4s 782ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 4s 880ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 5s 73ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 4s 885ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 4s 818ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 4s 962ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 4s 993ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 4s 787ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 4s 980ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 4s 990ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 4s 767ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 4s 912ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 5s 23ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 4s 780ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 4s 805ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 4s 744ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 5s 20ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 4s 828ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 4s 766ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 4s 740ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 4s 809ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 5s 114ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 4s 854ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 4s 943ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 4s 734ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 4s 775ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 4s 881ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 4s 852ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 4s 752ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 4s 953ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 4s 852ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 4s 849ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 4s 807ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 4s 996ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 179ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 5s 133ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 5s 331ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 4s 907ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 4s 853ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 4s 957ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 4s 901ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 4s 974ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 4s 800ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 4s 713ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 4s 937ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 4s 938ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 4s 997ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 4s 800ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 4s 685ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 4s 859ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 4s 908ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 4s 922ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 4s 994ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 4s 879ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 4s 825ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 4s 858ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 4s 695ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 4s 881ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 4s 689ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 4s 839ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 4s 974ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 4s 926ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 5s 16ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 5s 87ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 4s 709ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 4s 887ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 5s 19ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 5s 136ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 4s 875ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 4s 883ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 4s 870ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 1m 7s
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type OK 50s 706ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause OK 5s 109ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type OK 4s 46ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 7s 621ms
/iceberg/iceberg engine/rest catalog/datatypes OK 12s 861ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 12s 860ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 2ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition Skip 1ms
/iceberg/iceberg engine/rest catalog/dot separated column names OK 3s 391ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 1s 535ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 1s 854ms
/iceberg/s3 table function OK 1s 461ms
/iceberg/s3 table function/s3 table function OK 1s 460ms
/iceberg/icebergS3 table function OK 2m 35s
/iceberg/icebergS3 table function/rest catalog OK 1m 14s
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 48s 875ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 1s 560ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 712ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 22s 797ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 22s 802ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 25s 239ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 10s 988ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 602ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 592ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 792ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 12ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 259ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 650ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 656ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 467ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 247ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 156ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 168ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 165ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 169ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 168ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 158ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 172ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 173ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 173ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 172ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 156ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 699ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 713ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 900ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 145ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 425ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 755ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 685ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 529ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 269ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 199ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 233ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 243ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 278ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 268ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 218ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 206ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 210ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 202ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 192ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 179ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 430ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 656ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 840ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 44ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 271ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 845ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 660ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 468ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 226ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 136ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 142ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 132ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 129ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 117ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 142ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 144ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 154ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 136ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 130ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 132ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 14s 248ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 723ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 906ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 99ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 709ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 394ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 698ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 674ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 482ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 305ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 243ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 263ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 253ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 230ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 230ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 260ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 232ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 251ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 266ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 241ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 183ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 710ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 743ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 956ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 166ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 483ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 782ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 737ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 542ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 295ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 387ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 351ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 270ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 323ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 345ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 252ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 342ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 323ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 317ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 303ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 228ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 450ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 670ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 866ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 70ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 346ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 925ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 697ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 491ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 299ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 217ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 226ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 199ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 220ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 202ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 204ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 214ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 223ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 211ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 187ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 118ms
/iceberg/icebergS3 table function/glue catalog OK 1m 21s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 48s 973ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 600ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 707ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 22s 800ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 22s 863ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 32s 223ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 15s 465ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 711ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 710ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 904ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 103ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 381ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 657ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 677ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 489ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 272ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 188ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 189ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 182ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 168ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 158ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 206ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 197ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 173ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 179ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 173ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 144ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 710ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 731ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 962ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 157ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 464ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 783ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 751ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 501ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 277ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 232ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 284ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 257ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 263ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 250ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 187ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 286ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 276ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 264ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 269ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 186ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 444ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 658ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 877ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 70ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 323ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 876ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 674ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 424ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 247ms
/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 142ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 155ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 157ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 151ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 125ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 113ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 137ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 132ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 123ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 112ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 16s 756ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 745ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 746ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 924ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 151ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 452ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 682ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 697ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 523ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 297ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 227ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 235ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 234ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 233ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 207ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 195ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 225ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 240ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 247ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 247ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 190ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 751ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 764ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 959ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 190ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 540ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 791ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 759ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 596ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 343ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 292ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 312ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 313ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 288ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 288ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 219ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 327ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 306ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 316ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 249ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 220ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 926ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 699ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 929ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 358ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 416ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 971ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 736ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 522ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 309ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 199ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 205ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 191ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 203ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 192ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 215ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 218ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 217ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 205ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 203ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 128ms
/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