Iceberg Test Run Report

DateJan 29, 2026 19:20
Duration1h 13m
Framework TestFlows 2.0.250110.1002922

Artifacts

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

Attributes

projectAltinity/ClickHouse
project.id159717931
user.nameMyroTk
version25.8.14.20001.altinityantalya
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-25.8/783cf36a6b3f5ac96664da8492da0107438616f6/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hashb6ad0719560fc2e01298d287c7564d8e74ae915e
job.namesuite
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/21490327153
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-25.8/783cf36a6b3f5ac96664da8492da0107438616f6/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.3%OK
<1%Known

Statistics

Units OK Fail XFail
Modules
1
1
Features
41
41
Scenarios
480
474
6
Checks
340
340
Steps
57417
57383
8
26

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal columnXFail 1s 967ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 315, 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 289, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 20, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 547, in feature
    Scenario(test=issue_with_decimal_column)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 453, in issue_with_decimal_column
    check_read_with_predicate_push_down(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 68, in check_read_with_predicate_push_down
    assert int(read_rows.output.strip()) == 0, error(
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

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

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

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

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

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

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

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

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

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

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

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

60\|              use_iceberg_partition_pruning="0",
61\|          )
62\|          assert result.output.strip() == "", error()
63\|  
64\|      with And(f"check that 0 rows were read"):
65\|          read_rows = metrics.get_read_rows(
66\|              log_comment=log_comment_with_pruning,
67\|          )
68\|>         assert int(read_rows.output.strip()) == 0, error(
69\|              f"Expected 0 rows to be read, with where clause: {where_clause}, but got {read_rows.output.strip()}"
70\|          )
71\|
/iceberg/iceberg cache/rest catalog/iceberg database engine/cacheXFail 32s 723ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 315, 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 305, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 10, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 118, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 109, in cache
    hits = check_hits(
           ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../parquet/tests/steps/metadata_caching.py", line 469, in check_hits
    assert int(hits) > 0, f"number of hits is less than 1 and = {hits}"
           ^^^^^^^^^^^^^
AssertionError: number of hits is less than 1 and = 0
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cacheXFail 40s 346ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 315, 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 305, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 16, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 80, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 71, in cache
    hits = check_hits(
           ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../parquet/tests/steps/metadata_caching.py", line 469, in check_hits
    assert int(hits) > 0, f"number of hits is less than 1 and = {hits}"
           ^^^^^^^^^^^^^
AssertionError: number of hits is less than 1 and = 0
/iceberg/iceberg cache/glue catalog/iceberg database engine/cacheXFail 32s 626ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 315, 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 305, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 22, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 118, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 109, in cache
    hits = check_hits(
           ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../parquet/tests/steps/metadata_caching.py", line 469, in check_hits
    assert int(hits) > 0, f"number of hits is less than 1 and = {hits}"
           ^^^^^^^^^^^^^
AssertionError: number of hits is less than 1 and = 0
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cacheXFail 41s 54ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 315, 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 305, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 28, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 80, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 71, in cache
    hits = check_hits(
           ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../parquet/tests/steps/metadata_caching.py", line 469, in check_hits
    assert int(hits) > 0, f"number of hits is less than 1 and = {hits}"
           ^^^^^^^^^^^^^
AssertionError: number of hits is less than 1 and = 0

Results

Test Name Result Duration
/iceberg OK 1h 13m
/iceberg/iceberg engine OK 1h 3m
/iceberg/iceberg engine/rest catalog OK 1h 3m
/iceberg/iceberg engine/rest catalog/feature OK 38s 981ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 3s 980ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 12s 791ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 1s 922ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 180ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 3s 879ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 421ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 468ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 569ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 668ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 2s 899ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 1s 838ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 689ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 1s 662ms
/iceberg/iceberg engine/rest catalog/feature OK 11s 26ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 2s 83ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 516ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 3s 86ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 452ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 440ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 1s 443ms
/iceberg/iceberg engine/rest catalog/column rbac OK 7m 6s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 4s 298ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 4s 209ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 4s 151ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 4s 194ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 4s 92ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 4s 54ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 4s 328ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 4s 134ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 4s 144ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 4s 549ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 4s 281ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 4s 130ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 4s 62ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 4s 190ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 4s 18ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 5s 34ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 4s 561ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 4s 227ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 3s 877ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 4s 11ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 4s 232ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 4s 83ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 4s 138ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 3s 984ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 4s 242ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 3s 951ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 4s 143ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 4s 65ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 4s 204ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 4s 313ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 4s 177ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 4s 178ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 4s 11ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 4s 361ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 4s 162ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 4s 59ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 4s 31ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 4s 157ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 4s 19ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 4s 1ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 4s 298ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 4s 48ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 4s 664ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 4s 212ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 4s 31ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 4s 488ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 4s 9ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 4s 441ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 3s 985ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 4s 223ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 4s 36ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 4s 561ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 4s 59ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 4s 240ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 3s 969ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 3s 994ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 4s 32ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 4s 270ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 4s 343ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 4s 156ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 4s 535ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 4s 241ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 4s 141ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 4s 221ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 4s 49ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 4s 125ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 4s 15ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 4s 645ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 4s 391ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 4s 45ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 4s 78ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 4s 227ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 4s 298ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 4s 48ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 4s 33ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 4s 331ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 4s 556ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 4s 7ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 5s 175ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 4s 141ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 4s 133ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 4s 114ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 4s 157ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 4s 396ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 4s 237ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 4s 406ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 4s 103ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 4s 348ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 4s 4ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 4s 146ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 4s 353ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 5s 109ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 4s 462ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 4s 7ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 4s 195ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 4s 102ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 4s 155ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 5s 173ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 4s 109ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 4s 494ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 1m 40s
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 1m 36s
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 1s 967ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 1s 931ms
/iceberg/iceberg engine/rest catalog/feature OK 6s 215ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 1s 990ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 2s 256ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 1s 966ms
/iceberg/iceberg engine/rest catalog/feature OK 1m 7s
/iceberg/iceberg engine/rest catalog/feature/row policies OK 1m 7s
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 628ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 792ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 647ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 577ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 736ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 692ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 656ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 646ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 670ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 704ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 655ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 635ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 626ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 561ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 561ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 557ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 630ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 655ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 691ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 641ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 607ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 609ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 621ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 706ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 671ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 569ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 739ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 662ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 612ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 673ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 668ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 632ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 633ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 692ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 669ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 564ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 660ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 624ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 682ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 548ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 573ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 635ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 573ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 686ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 632ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 688ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 688ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 627ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 673ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 626ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 573ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 682ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 619ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 702ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 693ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 626ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 698ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 700ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 678ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 585ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 672ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 696ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 680ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 564ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 675ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 634ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 621ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 694ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 619ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 625ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 718ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 573ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 673ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 620ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 669ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 652ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 611ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 626ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 557ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 655ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 687ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 664ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 564ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 627ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 675ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 632ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 587ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 683ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 672ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 660ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 605ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 585ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 625ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 661ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 577ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 631ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 663ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 621ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 611ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 650ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 3s 867ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 463ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 113ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 114ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 107ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 220ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 105ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 635ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 546ms
/iceberg/iceberg engine/rest catalog/feature OK 20m 57s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 20m 57s
/iceberg/iceberg engine/rest catalog/feature OK 4s 350ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 2s 202ms
/iceberg/iceberg engine/rest catalog/feature/append OK 2s 146ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 16m 11s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 9s 631ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 10s 66ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 10s 377ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 9s 641ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 9s 728ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 9s 490ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 9s 119ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 9s 642ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 9s 817ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 9s 467ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 9s 519ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 10s 69ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 10s 101ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 9s 778ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 10s 44ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 9s 242ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 9s 507ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 9s 624ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 9s 669ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 9s 400ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 10s 149ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 9s 488ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 9s 575ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 9s 964ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 9s 655ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 9s 721ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 9s 79ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 10s 236ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 9s 511ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 9s 616ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 9s 563ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 9s 796ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 10s 92ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 9s 747ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 9s 643ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 9s 636ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 10s 388ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 9s 755ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 9s 422ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 10s 97ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 9s 255ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 9s 555ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 9s 337ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 9s 130ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 9s 650ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 9s 299ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 9s 222ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 9s 565ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 10s 116ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 9s 150ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 9s 718ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 9s 990ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 9s 715ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 9s 694ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 9s 271ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 9s 924ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 9s 775ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 9s 746ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 9s 564ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 10s 283ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 10s 79ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 9s 515ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 9s 309ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 9s 563ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 10s 61ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 9s 770ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 9s 367ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 8s 963ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 9s 952ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 9s 205ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 10s 168ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 9s 891ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 11s 57ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 10s 537ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 9s 724ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 10s 278ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 9s 673ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 9s 296ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 10s 227ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 9s 790ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 9s 936ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 9s 794ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 10s 35ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 9s 138ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 9s 984ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 9s 443ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 9s 734ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 9s 733ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 9s 238ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 9s 591ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 9s 652ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 10s 6ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 9s 574ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 9s 809ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 9s 159ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 9s 840ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 10s 14ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 9s 490ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 9s 609ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 9s 949ms
/iceberg/iceberg engine/rest catalog/swarm OK 2s 719ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 718ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 1m 48s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 1s 986ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 432ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 2s 818ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 2s 903ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 3s 416ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 3s 866ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 4s 56ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 4s 584ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 4s 587ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 4s 959ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 5s 558ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 6s 20ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 6s 344ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 6s 457ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 7s 134ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 7s 739ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 7s 827ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 8s 60ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 8s 581ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 8s 885ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 8m 21s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 4s 781ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 5s 3ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 4s 899ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 4s 868ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 5s 71ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 5s 60ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 5s 152ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 5s 168ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 5s 18ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 5s 34ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 5s 195ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 4s 879ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 4s 968ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 5s 12ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 4s 964ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 4s 929ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 5s 168ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 5s 130ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 5s 50ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 5s 130ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 5s 47ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 4s 896ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 5s 28ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 5s 150ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 4s 832ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 4s 874ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 4s 959ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 5s 76ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 5s 30ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 4s 994ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 4s 973ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 5s 116ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 5s 51ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 4s 971ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 5s 31ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 5s 53ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 4s 833ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 5s 139ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 5s 67ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 4s 942ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 5s 172ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 5s 264ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 5s 204ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 4s 911ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 4s 934ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 5s 80ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 4s 967ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 4s 922ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 4s 968ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 4s 867ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 5s 147ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 4s 939ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 5s 122ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 4s 963ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 5s 29ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 5s 31ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 4s 953ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 4s 893ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 5s 112ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 5s 140ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 4s 936ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 5s 25ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 5s 1ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 117ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 5s 90ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 5s 115ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 4s 939ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 5s 88ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 4s 997ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 4s 960ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 5s 202ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 4s 937ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 4s 792ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 5s 15ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 5s 81ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 5s 114ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 4s 967ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 4s 849ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 4s 790ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 4s 959ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 4s 971ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 5s 414ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 5s 176ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 4s 950ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 5s 57ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 4s 780ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 5s 44ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 4s 878ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 5s 33ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 5s 89ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 5s 36ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 4s 935ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 4s 982ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 4s 776ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 5s 65ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 5s 38ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 5s 135ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 5s 55ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 4s 997ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 4s 962ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 1m 3s
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type OK 48s 182ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause OK 3s 887ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type OK 3s 745ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 7s 692ms
/iceberg/iceberg engine/rest catalog/datatypes OK 12s 849ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 12s 848ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 3m 46s
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition OK 3m 46s
/iceberg/iceberg engine/rest catalog/dot separated column names OK 3s 413ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 1s 552ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 1s 860ms
/iceberg/s3 table function OK 1s 495ms
/iceberg/s3 table function/s3 table function OK 1s 494ms
/iceberg/icebergS3 table function OK 1m 55s
/iceberg/icebergS3 table function/rest catalog OK 55s 366ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 27s 776ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 1s 664ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 689ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 1s 664ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 22s 756ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 27s 578ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 12s 270ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 679ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 666ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 896ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 130ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 408ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 757ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 759ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 511ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 267ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 232ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 198ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 221ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 214ms
/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 188ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 169ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 176ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 171ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 165ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 165ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 817ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 831ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 167ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 432ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 743ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 937ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 840ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 547ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 343ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 192ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 273ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 329ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 314ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 306ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 272ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 279ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 370ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 350ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 342ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 302ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 531ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 764ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 11ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 257ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 484ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 998ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 756ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 497ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 240ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 158ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 171ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 157ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 141ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 159ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 152ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 150ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 152ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 139ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 135ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 122ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 15s 307ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 798ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 787ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 998ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 248ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 507ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 719ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 721ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 537ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 289ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 266ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 251ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 262ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 248ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 202ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 176ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 206ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 195ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 195ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 194ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 185ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 881ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 869ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 117ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 364ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 667ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 796ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 798ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 575ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 318ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 369ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 365ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 377ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 378ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 356ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 366ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 324ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 345ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 334ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 339ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 281ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 548ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 749ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 985ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 218ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 506ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 982ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 748ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 539ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 306ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 120ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 173ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 174ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 160ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 148ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 117ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 172ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 162ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 164ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 156ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 128ms
/iceberg/icebergS3 table function/glue catalog OK 1m 0s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 27s 818ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 617ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 702ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 1s 651ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 22s 844ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 32s 321ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 15s 78ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 805ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 807ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 5ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 231ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 490ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 714ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 681ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 486ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 262ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 183ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 193ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 198ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 177ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 180ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 198ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 168ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 172ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 183ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 174ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 160ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 859ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 916ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 126ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 366ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 637ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 819ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 675ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 532ms
/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 273ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 281ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 300ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 312ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 293ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 266ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 271ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 304ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 277ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 291ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 176ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 491ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 739ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 938ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 168ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 423ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 940ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 669ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 481ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 240ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 141ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 141ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 144ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 149ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 127ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 181ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 176ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 170ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 165ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 155ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 118ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 17s 240ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 796ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 799ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 24ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 229ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 513ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 718ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 722ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 486ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 260ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 257ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 220ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 231ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 228ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 209ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 215ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 230ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 209ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 226ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 216ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 188ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 855ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 887ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 115ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 340ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 598ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 766ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 735ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 511ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 317ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 321ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 363ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 341ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 338ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 352ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 278ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 265ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 297ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 317ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 288ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 265ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 977ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 556ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 500ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 219ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 969ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 8ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 739ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 533ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 293ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 119ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 165ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 163ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 163ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 136ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 123ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 152ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 154ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 159ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 146ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 123ms
/iceberg/iceberg cache OK 2m 32s
/iceberg/iceberg cache/rest catalog OK 1m 15s
/iceberg/iceberg cache/rest catalog/iceberg database engine OK 32s 724ms
/iceberg/iceberg cache/rest catalog/iceberg database engine/cache XFail 32s 723ms
/iceberg/iceberg cache/rest catalog/iceberg table engine OK 2s 471ms
/iceberg/iceberg cache/rest catalog/iceberg table engine/cache OK 2s 470ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function OK 40s 347ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cache XFail 40s 346ms
/iceberg/iceberg cache/glue catalog OK 1m 16s
/iceberg/iceberg cache/glue catalog/iceberg database engine OK 32s 628ms
/iceberg/iceberg cache/glue catalog/iceberg database engine/cache XFail 32s 626ms
/iceberg/iceberg cache/glue catalog/iceberg table engine OK 3s 13ms
/iceberg/iceberg cache/glue catalog/iceberg table engine/cache OK 3s 12ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function OK 41s 55ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cache XFail 41s 54ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922