Iceberg Test Run Report

DateMar 22, 2026 17:28
Duration2h 0m
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/49bb3f7beb5e6e424a1e94c749478fd23a8e6196/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
user.namestrtgbb
version25.8.16.20002.altinityantalya
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-25.8/49bb3f7beb5e6e424a1e94c749478fd23a8e6196/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/23407769837
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-25.8/49bb3f7beb5e6e424a1e94c749478fd23a8e6196/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
57258
57224
8
26

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal columnXFail 3s 339ms
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 2s 998ms
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 43s 180ms
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 56s 217ms
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 43s 300ms
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 58s 319ms
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 0m
/iceberg/iceberg engine OK 1h 48m
/iceberg/iceberg engine/rest catalog OK 1h 48m
/iceberg/iceberg engine/rest catalog/feature OK 1m 4s
/iceberg/iceberg engine/rest catalog/feature/sanity OK 6s 970ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 21s 692ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 2s 994ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 3s 426ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 6s 257ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 2s 325ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 2s 366ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 2s 382ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 2s 379ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 4s 914ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 2s 746ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 2s 786ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 2s 914ms
/iceberg/iceberg engine/rest catalog/feature OK 17s 823ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 3s 306ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 2s 445ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 5s 633ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 2s 78ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 2s 174ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 2s 182ms
/iceberg/iceberg engine/rest catalog/column rbac OK 13m 11s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 7s 184ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 7s 841ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 6s 952ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 7s 87ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 8s 77ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 7s 250ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 7s 770ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 7s 469ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 6s 968ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 8s 466ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 7s 797ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 7s 683ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 6s 799ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 7s 296ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 7s 344ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 9s 852ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 8s 837ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 8s 94ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 7s 75ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 7s 352ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 7s 165ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 7s 197ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 6s 986ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 7s 8ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 7s 621ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 6s 869ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 7s 603ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 7s 529ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 7s 443ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 7s 796ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 7s 173ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 7s 307ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 6s 939ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 8s 166ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 7s 375ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 7s 161ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 7s 364ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 7s 596ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 7s 645ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 8s 679ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 7s 628ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 7s 705ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 8s 307ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 7s 835ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 7s 807ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 8s 781ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 8s 902ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 9s 482ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 8s 76ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 8s 873ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 7s 313ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 9s 7ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 8s 79ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 7s 550ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 7s 488ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 7s 474ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 7s 462ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 8s 236ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 7s 855ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 8s 786ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 8s 542ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 7s 314ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 7s 250ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 8s 135ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 7s 307ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 7s 628ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 7s 551ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 8s 920ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 8s 418ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 7s 380ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 7s 83ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 8s 734ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 7s 595ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 8s 191ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 7s 91ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 7s 804ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 8s 600ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 7s 101ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 10s 95ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 8s 440ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 8s 20ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 7s 97ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 7s 863ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 8s 481ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 8s 223ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 8s 126ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 7s 448ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 8s 46ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 7s 125ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 7s 191ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 8s 178ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 10s 961ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 8s 338ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 6s 800ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 8s 537ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 7s 737ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 7s 851ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 10s 406ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 7s 405ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 7s 781ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 1m 23s
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 1m 17s
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 3s 339ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 2s 998ms
/iceberg/iceberg engine/rest catalog/feature OK 9s 588ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 3s 74ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 3s 624ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 2s 887ms
/iceberg/iceberg engine/rest catalog/feature OK 2m 10s
/iceberg/iceberg engine/rest catalog/feature/row policies OK 2m 10s
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 1s 141ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 1s 523ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 1s 315ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 955ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 1s 609ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 1s 230ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 1s 240ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 1s 117ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 1s 690ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 1s 388ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 1s 442ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 1s 123ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 1s 144ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 984ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 941ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 974ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 1s 287ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 1s 178ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 1s 346ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 1s 17ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 998ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 1s 258ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 1s 54ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 1s 126ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 1s 177ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 1s 88ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 1s 317ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 1s 439ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 1s 276ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 1s 234ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 1s 198ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 1s 171ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 1s 1ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 1s 194ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 1s 151ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 849ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 1s 444ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 1s 200ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 1s 361ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 1s 15ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 896ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 1s 278ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 1s 73ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 1s 366ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 1s 135ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 1s 14ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 1s 134ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 1s 240ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 1s 264ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 1s 745ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 1s 82ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 1s 557ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 1s 122ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 1s 460ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 1s 442ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 1s 597ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 1s 359ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 1s 309ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 1s 334ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 1s 56ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 1s 442ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 1s 516ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 1s 608ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 1s 425ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 1s 453ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 1s 148ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 1s 192ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 1s 158ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 1s 110ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 1s 107ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 1s 333ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 1s 202ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 1s 547ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 1s 434ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 1s 244ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 1s 240ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 1s 29ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 997ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 1s 88ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 1s 177ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 1s 276ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 1s 140ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 1s 89ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 1s 184ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 1s 236ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 1s 291ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 1s 323ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 1s 485ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 1s 397ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 1s 312ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 1s 164ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 1s 31ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 1s 79ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 1s 439ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 948ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 1s 725ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 1s 380ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 1s 159ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 1s 268ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 1s 431ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 7s 31ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 962ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 175ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 200ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 188ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 438ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 148ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 1s 192ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 1s 51ms
/iceberg/iceberg engine/rest catalog/feature OK 36m 40s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 36m 40s
/iceberg/iceberg engine/rest catalog/feature OK 6s 620ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 3s 252ms
/iceberg/iceberg engine/rest catalog/feature/append OK 3s 364ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 27m 53s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 16s 822ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 16s 451ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 17s 692ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 16s 139ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 16s 910ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 16s 11ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 14s 444ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 17s 397ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 18s 314ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 16s 939ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 18s 452ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 19s 419ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 17s 583ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 18s 623ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 17s 747ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 17s 296ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 16s 239ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 16s 474ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 16s 546ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 16s 212ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 18s 17ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 15s 78ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 16s 400ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 16s 648ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 16s 44ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 17s 30ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 15s 51ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 17s 339ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 16s 350ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 17s 118ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 16s 973ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 16s 505ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 17s 883ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 16s 548ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 17s 629ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 16s 838ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 17s 990ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 17s 194ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 16s 188ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 17s 392ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 14s 995ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 16s 726ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 15s 541ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 15s 562ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 16s 721ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 16s 168ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 15s 625ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 17s 111ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 17s 620ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 16s 739ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 17s 18ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 18s 202ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 17s 835ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 16s 562ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 15s 362ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 17s 986ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 17s 240ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 16s 667ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 16s 49ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 17s 174ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 17s 879ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 15s 858ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 15s 963ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 16s 790ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 18s 162ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 16s 162ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 16s 249ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 16s 193ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 17s 610ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 14s 915ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 17s 639ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 16s 623ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 19s 297ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 17s 316ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 16s 402ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 16s 904ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 15s 994ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 15s 523ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 17s 997ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 16s 521ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 16s 681ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 17s 684ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 17s 41ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 15s 413ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 17s 871ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 15s 921ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 16s 267ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 17s 386ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 15s 584ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 16s 362ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 16s 479ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 17s 109ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 16s 400ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 15s 716ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 14s 840ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 15s 744ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 17s 306ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 15s 125ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 15s 807ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 15s 935ms
/iceberg/iceberg engine/rest catalog/swarm OK 3s 975ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 3s 974ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 2m 43s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 2s 868ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 3s 557ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 4s 240ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 4s 477ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 5s 246ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 5s 513ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 5s 588ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 6s 186ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 6s 869ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 6s 902ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 8s 9ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 8s 684ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 8s 812ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 10s 48ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 10s 167ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 12s 360ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 12s 355ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 13s 340ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 12s 980ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 14s 955ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 13m 56s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 8s 942ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 8s 462ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 8s 266ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 8s 202ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 8s 414ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 8s 995ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 8s 569ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 9s 14ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 7s 966ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 8s 357ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 8s 384ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 7s 805ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 8s 242ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 8s 317ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 7s 861ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 7s 741ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 8s 223ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 8s 767ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 8s 346ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 8s 938ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 8s 222ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 7s 764ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 8s 809ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 8s 547ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 8s 33ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 7s 887ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 8s 683ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 8s 690ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 7s 689ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 8s 322ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 8s 509ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 8s 361ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 8s 190ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 7s 770ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 9s 7ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 8s 427ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 7s 776ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 8s 563ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 8s 533ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 7s 886ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 8s 899ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 7s 880ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 7s 841ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 8s 552ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 8s 372ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 8s 751ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 8s 336ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 7s 589ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 7s 958ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 8s 133ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 8s 691ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 8s 211ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 8s 561ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 8s 518ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 8s 837ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 8s 376ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 7s 896ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 7s 681ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 8s 248ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 8s 841ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 8s 870ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 8s 348ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 9s 286ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 8s 821ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 9s 33ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 9s 15ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 9s 525ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 8s 449ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 8s 936ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 9s 41ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 8s 998ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 7s 952ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 7s 878ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 8s 786ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 8s 679ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 8s 378ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 8s 144ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 7s 971ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 8s 820ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 8s 73ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 8s 140ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 8s 899ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 8s 317ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 7s 745ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 7s 955ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 7s 836ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 7s 710ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 7s 907ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 7s 767ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 9s 932ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 7s 985ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 7s 839ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 7s 698ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 7s 717ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 8s 374ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 8s 605ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 8s 648ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 8s 341ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 8s 3ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 8s 543ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 1m 42s
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type OK 1m 17s
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause OK 6s 246ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type OK 6s 99ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 12s 795ms
/iceberg/iceberg engine/rest catalog/datatypes OK 22s 651ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 22s 650ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 6m 50s
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition OK 6m 50s
/iceberg/iceberg engine/rest catalog/dot separated column names OK 5s 17ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 2s 256ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 2s 757ms
/iceberg/s3 table function OK 2s 179ms
/iceberg/s3 table function/s3 table function OK 2s 178ms
/iceberg/icebergS3 table function OK 1m 59s
/iceberg/icebergS3 table function/rest catalog OK 54s 127ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 9s 819ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 2s 323ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 2s 575ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 2s 394ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 2s 522ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 44s 275ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 18s 543ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 1s 180ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 1s 185ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 486ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 903ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 2s 317ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 1s 393ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 1s 377ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 993ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 610ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 327ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 224ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 269ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 278ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 266ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 225ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 245ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 235ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 227ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 242ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 224ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 385ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 410ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 785ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 110ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 2s 512ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 183ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 193ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 686ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 442ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 388ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 309ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 444ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 465ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 453ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 409ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 420ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 377ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 466ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 439ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 371ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 766ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 153ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 411ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 728ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 2s 185ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 471ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 1s 108ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 809ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 497ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 230ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 254ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 241ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 212ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 264ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 395ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 315ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 344ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 279ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 299ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 176ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 25s 729ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 304ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 290ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 576ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 2s 638ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 3ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 1s 275ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 1s 395ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 1s 95ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 648ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 326ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 349ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 406ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 389ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 337ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 371ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 488ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 480ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 469ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 497ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 400ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 575ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 270ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 969ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 633ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 2s 703ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 127ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 48ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 818ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 529ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 395ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 487ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 435ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 522ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 478ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 392ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 435ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 512ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 479ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 478ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 411ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 711ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 38ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 384ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 762ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 2s 115ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 480ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 1s 142ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 746ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 376ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 257ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 322ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 317ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 266ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 267ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 171ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 270ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 275ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 264ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 261ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 224ms
/iceberg/icebergS3 table function/glue catalog OK 1m 5s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 10s 971ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 2s 497ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 3s 145ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 2s 553ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 2s 768ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 54s 332ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 25s 724ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 1s 310ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 1s 585ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 304ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 882ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 2s 277ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 1s 37ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 984ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 689ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 408ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 390ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 421ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 425ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 440ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 440ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 261ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 313ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 349ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 288ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 329ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 205ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 131ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 258ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 442ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 807ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 2s 422ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 507ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 452ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 206ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 759ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 492ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 514ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 606ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 472ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 522ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 458ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 321ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 413ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 443ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 431ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 294ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 890ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 287ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 607ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 2s 334ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 917ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 518ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 1s 36ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 741ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 448ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 241ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 249ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 254ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 283ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 266ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 200ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 221ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 201ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 178ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 173ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 172ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 28s 605ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 526ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕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 741ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 2s 56ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 537ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 1s 76ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 1s 112ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 938ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 484ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 393ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 433ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 406ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 414ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 426ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 279ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 312ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 300ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 295ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 322ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 274ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 373ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 428ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 720ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 14ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 2s 573ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 151ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 194ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 801ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 608ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 633ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 647ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 598ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 581ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 681ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 443ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 487ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 485ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 434ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 417ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 345ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 774ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 100ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 459ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 802ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 2s 360ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 571ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 1s 253ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 899ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 539ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 238ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 690ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 331ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 672ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 322ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 486ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 707ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 714ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 421ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 371ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 384ms
/iceberg/iceberg cache OK 3m 29s
/iceberg/iceberg cache/rest catalog OK 1m 43s
/iceberg/iceberg cache/rest catalog/iceberg database engine OK 43s 194ms
/iceberg/iceberg cache/rest catalog/iceberg database engine/cache XFail 43s 180ms
/iceberg/iceberg cache/rest catalog/iceberg table engine OK 3s 669ms
/iceberg/iceberg cache/rest catalog/iceberg table engine/cache OK 3s 668ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function OK 56s 219ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cache XFail 56s 217ms
/iceberg/iceberg cache/glue catalog OK 1m 45s
/iceberg/iceberg cache/glue catalog/iceberg database engine OK 43s 304ms
/iceberg/iceberg cache/glue catalog/iceberg database engine/cache XFail 43s 300ms
/iceberg/iceberg cache/glue catalog/iceberg table engine OK 4s 278ms
/iceberg/iceberg cache/glue catalog/iceberg table engine/cache OK 4s 270ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function OK 58s 320ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cache XFail 58s 319ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922