Iceberg Test Run Report

DateFeb 23, 2026 14:42
Duration2h 27m
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/027f87165d1035cbd110054e534db3f0e7bb09b9/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
user.nameCarlosFelipeOR
version25.8.16.20001.altinityantalya
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-25.8/027f87165d1035cbd110054e534db3f0e7bb09b9/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash92f4413c775fc750e826951f5d235766c562a98f
job.nameiceberg_1
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/22309533808
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-25.8/027f87165d1035cbd110054e534db3f0e7bb09b9/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
57256
57222
8
26

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal columnXFail 4s 554ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 350, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 324, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 20, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 553, in feature
    Scenario(test=issue_with_decimal_column)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 459, in issue_with_decimal_column
    check_read_with_predicate_push_down(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 69, in check_read_with_predicate_push_down
    assert int(read_rows.output.strip()) == 0, error(
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

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

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

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

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

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

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

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

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

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

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

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

61\|              input_format_parquet_bloom_filter_push_down="0"
62\|          )
63\|          assert result.output.strip() == "", error()
64\|  
65\|      with And(f"check that 0 rows were read"):
66\|          read_rows = metrics.get_read_rows(
67\|              log_comment=log_comment_with_pruning,
68\|          )
69\|>         assert int(read_rows.output.strip()) == 0, error(
70\|              f"Expected 0 rows to be read, with where clause: {where_clause}, but got {read_rows.output.strip()}"
71\|          )
72\|
/iceberg/iceberg cache/rest catalog/iceberg database engine/cacheXFail 49s 482ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 350, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 340, 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 1m 6s
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 350, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 340, 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 52s 198ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 350, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 340, 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 1m 7s
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 350, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 340, 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 2h 27m
/iceberg/iceberg engine OK 2h 14m
/iceberg/iceberg engine/rest catalog OK 2h 14m
/iceberg/iceberg engine/rest catalog/feature OK 1m 31s
/iceberg/iceberg engine/rest catalog/feature/sanity OK 9s 698ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 29s 226ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 4s 381ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 4s 994ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 9s 96ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 3s 610ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 3s 675ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 4s 42ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 3s 807ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 6s 518ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 4s 269ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 3s 899ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 3s 921ms
/iceberg/iceberg engine/rest catalog/feature OK 26s 773ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 5s 8ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 3s 742ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 7s 229ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 3s 497ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 3s 606ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 3s 683ms
/iceberg/iceberg engine/rest catalog/column rbac OK 15m 47s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 9s 878ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 9s 460ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 9s 179ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 9s 548ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 9s 235ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 8s 716ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 9s 116ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 8s 868ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 8s 818ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 9s 869ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 9s 327ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 8s 947ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 8s 722ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 9s 230ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 8s 927ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 11s 300ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 10s 106ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 9s 292ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 8s 712ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 8s 859ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 9s 194ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 8s 729ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 9s 151ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 9s 139ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 9s 547ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 8s 522ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 9s 197ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 8s 805ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 8s 942ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 9s 581ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 9s 56ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 9s 21ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 8s 563ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 9s 443ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 8s 854ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 8s 587ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 8s 877ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 8s 997ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 8s 861ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 8s 559ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 9s 194ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 8s 816ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 10s 335ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 9s 516ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 8s 710ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 9s 655ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 8s 779ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 9s 703ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 8s 591ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 8s 934ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 8s 867ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 10s 86ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 9s 85ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 9s 889ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 8s 359ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 8s 551ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 8s 739ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 9s 727ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 10s 239ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 9s 499ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 10s 330ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 9s 220ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 9s 55ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 9s 446ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 9s 18ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 9s 18ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 8s 777ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 10s 850ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 10s 266ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 9s 464ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 9s 130ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 9s 833ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 9s 725ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 8s 900ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 9s 18ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 9s 575ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 10s 815ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 9s 160ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 12s 269ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 9s 628ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 9s 187ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 9s 180ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 9s 159ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 9s 689ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 9s 687ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 10s 337ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 9s 537ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 9s 918ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 9s 133ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 9s 265ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 10s 100ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 12s 428ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 10s 235ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 9s 228ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 9s 498ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 9s 95ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 9s 119ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 11s 498ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 9s 63ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 10s 34ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 1m 32s
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 1m 23s
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 4s 554ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 4s 590ms
/iceberg/iceberg engine/rest catalog/feature OK 14s 277ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 4s 707ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 5s 21ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 4s 545ms
/iceberg/iceberg engine/rest catalog/feature OK 2m 31s
/iceberg/iceberg engine/rest catalog/feature/row policies OK 2m 31s
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 1s 405ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 1s 800ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 1s 426ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 1s 249ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 1s 562ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 1s 534ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 1s 477ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 1s 426ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 1s 542ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 1s 509ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 1s 537ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 1s 472ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 1s 381ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 1s 275ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 1s 257ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 1s 248ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 1s 393ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 1s 486ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 1s 479ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 1s 453ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 1s 408ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 1s 392ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 1s 383ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 1s 494ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 1s 505ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 1s 299ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 1s 581ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 1s 480ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 1s 334ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 1s 520ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 1s 509ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 1s 428ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 1s 483ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 1s 594ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 1s 506ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 1s 215ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 1s 400ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 1s 342ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 1s 549ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 1s 229ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 1s 268ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 1s 410ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 1s 274ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 1s 575ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 1s 384ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 1s 499ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 1s 530ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 1s 411ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 1s 502ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 1s 361ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 1s 235ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 1s 509ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 1s 424ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 1s 549ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 1s 537ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 1s 368ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 1s 556ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 1s 524ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 1s 545ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 1s 214ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 1s 462ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 1s 497ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 1s 504ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 1s 242ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 1s 494ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 1s 351ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 1s 367ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 1s 535ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 1s 372ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 1s 398ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 1s 490ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 1s 280ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 1s 521ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 1s 387ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 1s 511ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 1s 422ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 1s 407ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 1s 362ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 1s 298ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 1s 493ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 1s 595ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 1s 506ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 1s 376ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 1s 387ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 1s 603ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 1s 381ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 1s 277ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 1s 543ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 1s 543ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 1s 620ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 1s 369ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 1s 274ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 1s 387ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 1s 506ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 1s 355ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 1s 510ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 1s 638ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 1s 406ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 1s 435ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 1s 402ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 9s 164ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 1s 94ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 269ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 273ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 299ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 499ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 250ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 1s 449ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 1s 212ms
/iceberg/iceberg engine/rest catalog/feature OK 45m 18s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 45m 18s
/iceberg/iceberg engine/rest catalog/feature OK 9s 522ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 4s 741ms
/iceberg/iceberg engine/rest catalog/feature/append OK 4s 777ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 35m 33s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 21s 574ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 22s 294ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 22s 705ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 20s 884ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 21s 579ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 21s 198ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 20s 115ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 21s 408ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 21s 473ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 20s 784ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 20s 796ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 22s 42ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 21s 654ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 21s 631ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 22s 3ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 20s 506ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 21s 596ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 21s 719ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 22s 230ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 20s 846ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 22s 939ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 20s 444ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 21s 214ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 21s 901ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 20s 534ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 21s 22ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 19s 964ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 22s 206ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 20s 944ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 21s 466ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 20s 615ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 21s 341ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 22s 21ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 21s 153ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 21s 483ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 21s 130ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 22s 238ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 21s 265ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 20s 589ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 22s 400ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 20s 39ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 20s 851ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 20s 430ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 20s 71ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 20s 652ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 19s 993ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 20s 699ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 21s 116ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 22s 691ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 21s 234ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 21s 318ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 21s 872ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 21s 368ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 21s 771ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 20s 490ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 21s 321ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 21s 111ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 21s 431ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 20s 685ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 22s 289ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 22s 144ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 20s 979ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 20s 695ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 20s 985ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 21s 505ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 22s 192ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 21s 9ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 19s 895ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 21s 822ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 20s 96ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 21s 913ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 21s 971ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 23s 841ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 22s 690ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 21s 400ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 22s 379ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 20s 959ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 20s 166ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 22s 370ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 21s 568ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 21s 723ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 20s 793ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 21s 772ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 20s 63ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 21s 951ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 20s 584ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 20s 760ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 21s 460ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 20s 413ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 20s 902ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 21s 73ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 22s 182ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 20s 884ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 21s 563ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 20s 655ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 21s 367ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 21s 888ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 20s 990ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 21s 730ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 22s 463ms
/iceberg/iceberg engine/rest catalog/swarm OK 5s 293ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 5s 291ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 4m 41s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 4s 551ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 5s 662ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 6s 480ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 7s 321ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 8s 243ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 9s 718ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 9s 848ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 11s 158ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 12s 288ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 13s 404ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 13s 712ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 14s 663ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 16s 454ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 16s 717ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 19s 104ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 20s 646ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 21s 541ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 21s 677ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 23s 173ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 24s 863ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 17m 27s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 10s 492ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 11s 138ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 10s 580ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 10s 878ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 10s 653ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 10s 526ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 10s 716ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 10s 461ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 10s 866ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 10s 978ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 10s 761ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 10s 440ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 10s 380ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 10s 372ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 10s 227ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 10s 119ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 10s 701ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 10s 282ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 10s 125ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 10s 349ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 10s 471ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 10s 485ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 10s 350ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 10s 690ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 10s 237ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 9s 926ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 10s 53ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 11s 48ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 10s 380ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 10s 254ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 9s 979ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 10s 389ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 10s 72ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 10s 436ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 10s 426ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 10s 569ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 10s 279ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 10s 733ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 11s 282ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 10s 648ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 10s 731ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 10s 374ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 10s 358ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 10s 336ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 10s 712ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 11s 46ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 10s 766ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 10s 625ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 10s 235ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 10s 644ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 11s 297ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 9s 990ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 11s 175ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 10s 760ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 10s 570ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 10s 653ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 10s 462ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 10s 193ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 10s 702ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 11s 70ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 10s 288ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 10s 8ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 10s 381ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 10s 888ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 10s 635ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 10s 848ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 10s 625ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 10s 918ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 11s 126ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 10s 961ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 10s 625ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 10s 211ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 9s 991ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 10s 576ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 10s 463ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 10s 336ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 10s 29ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 10s 193ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 10s 339ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 10s 722ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 10s 559ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 10s 181ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 10s 327ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 10s 222ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 10s 459ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 10s 73ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 10s 601ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 9s 807ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 10s 191ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 10s 215ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 10s 88ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 10s 354ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 10s 520ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 9s 928ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 10s 73ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 10s 365ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 10s 456ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 10s 389ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 10s 246ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 10s 19ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 2m 2s
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type OK 1m 27s
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause OK 9s 97ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type OK 8s 984ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 17s 391ms
/iceberg/iceberg engine/rest catalog/datatypes OK 29s 701ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 29s 698ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 6m 24s
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition OK 6m 24s
/iceberg/iceberg engine/rest catalog/dot separated column names OK 8s 295ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 3s 912ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 4s 379ms
/iceberg/s3 table function OK 3s 637ms
/iceberg/s3 table function/s3 table function OK 3s 634ms
/iceberg/icebergS3 table function OK 2m 21s
/iceberg/icebergS3 table function/rest catalog OK 1m 7s
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 15s 524ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 3s 809ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 4s 107ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 3s 824ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 3s 776ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 51s 492ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 22s 320ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 1s 251ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 1s 257ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 2s 78ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 643ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 2s 608ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 1s 315ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 1s 341ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 917ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 526ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 406ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 414ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 403ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 412ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 389ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 332ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 416ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 410ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 398ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 397ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 316ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 509ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 604ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 1ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 945ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 2s 430ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 488ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 400ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 82ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 514ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 799ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 700ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 707ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 733ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 656ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 624ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 744ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 688ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 658ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 694ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 509ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 967ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 367ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 781ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 2s 662ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 2s 164ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 724ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 1s 264ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 906ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 415ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 248ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 245ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 273ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 251ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 262ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 234ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 239ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 280ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 260ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 255ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 233ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 29s 169ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 562ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 558ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 962ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 2s 381ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 862ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 1s 309ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 1s 359ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 958ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 508ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 472ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 496ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 503ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 478ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 457ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 618ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 579ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 567ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 571ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 533ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 411ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 548ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 87ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 648ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 483ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 147ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 527ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 537ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 52ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 638ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 656ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 729ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 602ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 638ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 601ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 740ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 711ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 691ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 687ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 619ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 545ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 1s 47ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 466ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 2s 309ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 880ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 2s 808ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 759ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 1s 349ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 956ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 527ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 347ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 351ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 359ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 330ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 355ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 301ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 330ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 333ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 320ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 317ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 255ms
/iceberg/icebergS3 table function/glue catalog OK 1m 14s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 15s 187ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 3s 808ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 3s 960ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 3s 717ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 3s 696ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 59s 717ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 28s 623ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 1s 544ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 1s 987ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 549ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 2s 425ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 2s 929ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 1s 386ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 1s 475ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 1s 29ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 521ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 343ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 449ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 419ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 399ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 380ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 334ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 355ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 400ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 379ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 371ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 312ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 2s 102ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 508ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 558ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 625ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 49ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 524ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 522ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 44ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 637ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 620ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 708ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 671ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 559ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 670ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 559ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 536ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 626ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 619ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 567ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 518ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 2s 293ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 463ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 32ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 876ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 2s 713ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 744ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 1s 306ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 859ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 471ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 237ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 299ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 306ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 311ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 272ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 247ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 300ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 299ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 318ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 305ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 256ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 31s 91ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 550ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 551ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 984ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 2s 378ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 940ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 1s 410ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 1s 405ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 881ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 502ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 417ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 464ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 429ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 438ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 448ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 403ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 422ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 457ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 483ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 456ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 392ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 523ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 642ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 40ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 433ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 53ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 521ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 466ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 32ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 655ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 657ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 706ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 652ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 735ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 729ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 503ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 541ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 686ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 616ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 604ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 529ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 968ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 364ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 774ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 2s 207ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 2s 735ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 809ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 1s 379ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 972ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 557ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 407ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 379ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 416ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 396ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 403ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 426ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 400ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 359ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 374ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 369ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 250ms
/iceberg/iceberg cache OK 4m 7s
/iceberg/iceberg cache/rest catalog OK 2m 2s
/iceberg/iceberg cache/rest catalog/iceberg database engine OK 49s 484ms
/iceberg/iceberg cache/rest catalog/iceberg database engine/cache XFail 49s 482ms
/iceberg/iceberg cache/rest catalog/iceberg table engine OK 5s 385ms
/iceberg/iceberg cache/rest catalog/iceberg table engine/cache OK 5s 383ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function OK 1m 6s
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cache XFail 1m 6s
/iceberg/iceberg cache/glue catalog OK 2m 5s
/iceberg/iceberg cache/glue catalog/iceberg database engine OK 52s 202ms
/iceberg/iceberg cache/glue catalog/iceberg database engine/cache XFail 52s 198ms
/iceberg/iceberg cache/glue catalog/iceberg table engine OK 5s 827ms
/iceberg/iceberg cache/glue catalog/iceberg table engine/cache OK 5s 825ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function OK 1m 7s
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cache XFail 1m 7s

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922