Iceberg Test Run Report

DateAug 31, 2026 23:48
Duration1h 13m
Framework TestFlows 2.0.250110.1002922

Artifacts

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

Attributes

projectAltinity/ClickHouse
project.id159717931
user.namestrtgbb
version25.8.33.20001.altinityantalya
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-25.8/b65106c3adae782713a94077fb34a2dda0f5e522/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash302ae29c799e34b4694bc9b0020700d1ecc81044
job.nameiceberg_1
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/33449976006
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-25.8/b65106c3adae782713a94077fb34a2dda0f5e522/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.1%OK
<1%Known

Statistics

Units Skip OK Fail XFail
Modules
1
1
Features
44
44
Scenarios
486
2
478
6
Checks
340
340
Steps
57729
1
57692
8
28

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal columnXFail 2s 11ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 716, 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 29ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 716, 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 33s 181ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 732, 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 43s 865ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 732, 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 34s 33ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 732, 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 44s 145ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 732, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 28, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 80, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 71, in cache
    hits = check_hits(
           ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../parquet/tests/steps/metadata_caching.py", line 469, in check_hits
    assert int(hits) > 0, f"number of hits is less than 1 and = {hits}"
           ^^^^^^^^^^^^^
AssertionError: number of hits is less than 1 and = 0

Results

Test Name Result Duration
/iceberg OK 1h 13m
/iceberg/iceberg engine OK 1h 5m
/iceberg/iceberg engine/rest catalog OK 1h 5m
/iceberg/iceberg engine/rest catalog/feature OK 42s 652ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 4s 527ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 13s 249ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 2s 55ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 288ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 3s 816ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 449ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 616ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 621ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 643ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 3s 110ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 1s 893ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 850ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 1s 733ms
/iceberg/iceberg engine/rest catalog/feature/select from system databases OK 1s 789ms
/iceberg/iceberg engine/rest catalog/feature OK 11s 112ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 2s 128ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 495ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 3s 133ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 493ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 406ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 1s 453ms
/iceberg/iceberg engine/rest catalog/column rbac OK 7m 12s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 4s 298ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 4s 162ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 3s 988ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 4s 245ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 4s 206ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 4s 119ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 4s 362ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 4s 160ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 4s 159ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 4s 618ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 4s 446ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 4s 386ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 4s 226ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 4s 176ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 4s 51ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 5s 219ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 4s 607ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 4s 294ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 4s 35ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 4s 43ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 4s 263ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 4s 52ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 4s 190ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 4s 87ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 4s 376ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 4s 43ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 4s 164ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 4s 113ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 4s 352ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 4s 478ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 4s 289ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 4s 374ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 4s 95ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 4s 674ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 4s 299ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 4s 138ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 4s 165ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 4s 431ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 4s 154ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 4s 152ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 4s 386ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 4s 42ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 4s 799ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 4s 260ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 4s 82ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 4s 519ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 4s 216ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 4s 484ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 3s 956ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 4s 271ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 4s 16ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 4s 578ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 4s 57ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 4s 301ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 3s 976ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 4s 166ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 4s 118ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 4s 507ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 4s 464ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 4s 390ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 4s 558ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 4s 102ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 4s 37ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 4s 251ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 4s 195ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 4s 74ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 4s 14ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 4s 734ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 4s 488ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 4s 99ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 4s 59ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 4s 334ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 4s 290ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 4s 59ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 4s 30ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 4s 339ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 4s 831ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 4s 48ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 5s 264ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 4s 199ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 4s 91ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 4s 208ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 4s 169ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 4s 390ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 4s 166ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 4s 468ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 4s 72ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 4s 392ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 3s 937ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 4s 123ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 4s 495ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 5s 360ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 4s 410ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 4s 82ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 4s 259ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 4s 120ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 4s 187ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 5s 218ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 4s 127ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 4s 610ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 51s 926ms
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 47s 883ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 2s 11ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 2s 29ms
/iceberg/iceberg engine/rest catalog/rbac OK 6s 364ms
/iceberg/iceberg engine/rest catalog/rbac/select privilege OK 2s 64ms
/iceberg/iceberg engine/rest catalog/rbac/drop table privilege OK 2s 298ms
/iceberg/iceberg engine/rest catalog/rbac/drop database privilege OK 1s 999ms
/iceberg/iceberg engine/rest catalog/row policy OK 1m 10s
/iceberg/iceberg engine/rest catalog/row policy/row policies OK 1m 10s
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #0 OK 636ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #1 OK 801ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #2 OK 640ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #3 OK 570ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #4 OK 701ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #5 OK 695ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #6 OK 689ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #7 OK 637ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #8 OK 714ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #9 OK 694ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #10 OK 663ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #11 OK 626ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #12 OK 643ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #13 OK 579ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #14 OK 568ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #15 OK 581ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #16 OK 655ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #17 OK 679ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #18 OK 700ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #19 OK 638ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #20 OK 654ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #21 OK 636ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #22 OK 634ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #23 OK 697ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #24 OK 702ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #25 OK 574ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #26 OK 735ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #27 OK 703ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #28 OK 633ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #29 OK 701ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #30 OK 701ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #31 OK 634ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #32 OK 625ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #33 OK 712ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #34 OK 704ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #35 OK 577ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #36 OK 648ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #37 OK 642ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #38 OK 682ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #39 OK 576ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #40 OK 566ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #41 OK 645ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #42 OK 578ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #43 OK 682ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #44 OK 654ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #45 OK 701ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #46 OK 681ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #47 OK 623ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #48 OK 690ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #49 OK 648ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #50 OK 590ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #51 OK 732ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #52 OK 662ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #53 OK 712ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #54 OK 653ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #55 OK 668ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #56 OK 710ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #57 OK 713ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #58 OK 689ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #59 OK 567ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #60 OK 663ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #61 OK 698ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #62 OK 724ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #63 OK 621ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #64 OK 782ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #65 OK 674ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #66 OK 699ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #67 OK 777ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #68 OK 702ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #69 OK 708ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #70 OK 723ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #71 OK 615ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #72 OK 758ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #73 OK 681ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #74 OK 720ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #75 OK 663ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #76 OK 628ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #77 OK 630ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #78 OK 603ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #79 OK 718ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #80 OK 730ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #81 OK 672ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #82 OK 585ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #83 OK 641ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #84 OK 698ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #85 OK 658ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #86 OK 603ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #87 OK 722ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #88 OK 717ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #89 OK 712ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #90 OK 617ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #91 OK 580ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #92 OK 653ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #93 OK 730ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #94 OK 590ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #95 OK 657ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #96 OK 715ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #97 OK 647ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #98 OK 643ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #99 OK 644ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 3s 982ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 474ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 120ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 114ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 106ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 225ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 106ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 642ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 575ms
/iceberg/iceberg engine/rest catalog/equality delete reads OK 22m 11s
/iceberg/iceberg engine/rest catalog/equality delete reads/run equality deletes combinations OK 22m 11s
/iceberg/iceberg engine/rest catalog/position delete reads OK 3s 16ms
/iceberg/iceberg engine/rest catalog/position delete reads/read position deletes OK 3s 12ms
/iceberg/iceberg engine/rest catalog/overwrite OK 4s 599ms
/iceberg/iceberg engine/rest catalog/overwrite/overwrite OK 2s 320ms
/iceberg/iceberg engine/rest catalog/overwrite/append OK 2s 277ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 16m 22s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 10s 116ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 10s 568ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 10s 184ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 9s 515ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 9s 520ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 9s 689ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 9s 463ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 10s 782ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 10s 118ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 9s 471ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 9s 664ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 10s 56ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 10s 356ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 10s 229ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 10s 611ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 9s 480ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 10s 34ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 9s 686ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 9s 571ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 9s 725ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 10s 152ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 9s 409ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 9s 658ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 10s 40ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 9s 322ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 9s 666ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 9s 239ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 10s 256ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 9s 555ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 9s 844ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 9s 592ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 10s 265ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 10s 121ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 9s 831ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 9s 725ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 9s 654ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 10s 380ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 9s 799ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 9s 468ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 10s 236ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 9s 159ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 10s 43ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 9s 257ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 9s 170ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 9s 843ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 9s 258ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 9s 405ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 9s 751ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 9s 928ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 9s 135ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 9s 653ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 9s 908ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 9s 677ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 9s 657ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 9s 278ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 9s 932ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 10s 22ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 9s 739ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 9s 793ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 10s 712ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 10s 743ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 9s 702ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 9s 620ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 9s 793ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 10s 69ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 9s 984ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 9s 657ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 9s 45ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 10s 257ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 9s 341ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 9s 895ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 9s 872ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 10s 765ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 10s 242ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 9s 803ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 10s 41ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 9s 381ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 9s 58ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 10s 144ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 9s 783ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 10s 52ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 9s 922ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 9s 958ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 9s 157ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 10s 289ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 9s 443ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 9s 732ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 10s 56ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 9s 357ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 9s 715ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 9s 633ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 10s 187ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 9s 737ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 10s 93ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 9s 606ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 10s 107ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 9s 961ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 9s 402ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 10s 24ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 9s 946ms
/iceberg/iceberg engine/rest catalog/swarm OK 2s 825ms
/iceberg/iceberg engine/rest catalog/swarm/feature support validation OK 477us
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 724ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 1m 47s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 1s 982ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 537ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 2s 730ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 3s 53ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 3s 208ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 3s 777ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 3s 957ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 4s 629ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 4s 702ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 4s 963ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 5s 437ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 5s 778ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 6s 503ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 6s 660ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 6s 942ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 7s 381ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 7s 665ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 8s 352ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 8s 633ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 8s 932ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 9m 10s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 5s 358ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 5s 804ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 5s 622ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 5s 667ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 5s 707ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 5s 444ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 5s 503ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 5s 599ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 5s 431ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 5s 499ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 5s 572ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 5s 221ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 5s 665ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 5s 277ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 5s 231ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 5s 291ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 5s 481ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 5s 585ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 5s 413ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 5s 838ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 5s 669ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 5s 526ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 5s 557ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 5s 596ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 5s 214ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 5s 228ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 5s 489ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 5s 478ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 5s 375ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 5s 648ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 5s 423ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 5s 365ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 5s 528ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 5s 411ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 5s 625ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 5s 483ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 5s 203ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 5s 659ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 5s 548ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 5s 366ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 5s 938ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 5s 597ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 5s 641ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 5s 703ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 5s 487ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 5s 590ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 5s 730ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 5s 379ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 5s 275ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 5s 430ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 5s 647ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 5s 319ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 5s 703ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 5s 322ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 5s 259ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 5s 716ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 5s 423ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 5s 263ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 5s 726ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 5s 906ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 5s 658ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 5s 331ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 5s 372ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 522ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 5s 575ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 5s 674ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 5s 421ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 5s 430ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 5s 497ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 5s 429ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 5s 386ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 5s 277ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 5s 239ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 5s 782ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 5s 575ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 5s 536ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 5s 316ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 5s 263ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 5s 385ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 5s 529ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 5s 536ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 5s 490ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 5s 346ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 5s 268ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 5s 658ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 5s 273ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 5s 474ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 5s 231ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 5s 761ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 5s 757ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 5s 597ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 5s 532ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 5s 791ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 5s 199ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 5s 510ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 5s 660ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 5s 907ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 6s 51ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 5s 609ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 5s 309ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 1m 3s
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type OK 46s 728ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause OK 4s 801ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type OK 4s 401ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 7s 499ms
/iceberg/iceberg engine/rest catalog/datatypes OK 12s 923ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 12s 922ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 4m 28s
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/feature support validation OK 438us
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition OK 4m 28s
/iceberg/iceberg engine/rest catalog/dot separated column names OK 3s 733ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 1s 706ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 2s 25ms
/iceberg/iceberg engine/rest catalog/sort key timezone OK 3ms
/iceberg/iceberg engine/rest catalog/sort key timezone/feature support validation Skip 938us
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint OK 2ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint/similar table names hint Skip 915us
/iceberg/s3 table function OK 1s 512ms
/iceberg/s3 table function/s3 table function OK 1s 508ms
/iceberg/icebergS3 table function OK 2m 28s
/iceberg/icebergS3 table function/rest catalog OK 1m 20s
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 49s 131ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 1s 633ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 781ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 22s 859ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 22s 853ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 31s 438ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 13s 739ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 635ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 639ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 822ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 21ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 242ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 631ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 635ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 439ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 221ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 234ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 207ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 207ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 207ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 205ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 218ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 234ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 229ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 219ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 215ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 200ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 770ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 928ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 84ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 313ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 484ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 834ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 678ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 523ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 398ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 391ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 440ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 395ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 423ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 398ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 394ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 367ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 403ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 381ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 376ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 342ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 430ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 628ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 829ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 51ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 268ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 863ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 634ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 449ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 216ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 122ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 130ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 152ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 141ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 131ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 119ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 122ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 139ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 148ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 141ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 111ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 17s 698ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 769ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 779ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 974ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 204ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 449ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 689ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 696ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 489ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 271ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 309ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 278ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 303ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 307ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 291ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 270ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 274ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 262ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 283ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 290ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 218ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 899ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 964ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 129ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 594ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 309ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 754ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 634ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 511ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 464ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 416ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 502ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 414ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 449ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 461ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 429ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 456ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 446ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 474ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 441ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 366ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 474ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 695ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 890ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 100ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 401ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 927ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 687ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 510ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 282ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 150ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 199ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 186ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 163ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 160ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 128ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 199ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 184ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 186ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 183ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 133ms
/iceberg/icebergS3 table function/glue catalog OK 1m 8s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 28s 722ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 773ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 973ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 2s 12ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 22s 961ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 39s 608ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 18s 812ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 734ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 725ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 902ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 117ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 354ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 633ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 633ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 443ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 220ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 196ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 208ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 221ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 203ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 220ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 206ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 212ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 215ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 201ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 213ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 176ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 859ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 867ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 995ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 268ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 536ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 676ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 678ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 542ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 381ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 420ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 377ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 396ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 384ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 364ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 386ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 391ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 452ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 451ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 381ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 308ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 439ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 652ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 844ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 65ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 321ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 875ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 671ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 482ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 227ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 177ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 125ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 139ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 144ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 134ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 191ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 177ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 171ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 164ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 154ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 121ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 20s 795ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 747ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 733ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 923ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 130ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 397ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 668ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 682ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 501ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 276ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 283ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 289ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 264ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 266ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 275ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 252ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 253ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 249ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 264ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 237ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 202ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 144ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 170ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 160ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 517ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 850ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 677ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 658ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 681ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 460ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 423ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 429ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 470ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 454ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 492ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 517ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 513ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 525ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 537ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 467ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 339ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 449ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 664ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 873ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 85ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 342ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 921ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 715ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 508ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 295ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 166ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 149ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 164ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 173ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 162ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 163ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 160ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 165ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 151ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 148ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 120ms
/iceberg/iceberg cache OK 2m 41s
/iceberg/iceberg cache/rest catalog OK 1m 19s
/iceberg/iceberg cache/rest catalog/iceberg database engine OK 33s 182ms
/iceberg/iceberg cache/rest catalog/iceberg database engine/cache XFail 33s 181ms
/iceberg/iceberg cache/rest catalog/iceberg table engine OK 2s 681ms
/iceberg/iceberg cache/rest catalog/iceberg table engine/cache OK 2s 679ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function OK 43s 866ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cache XFail 43s 865ms
/iceberg/iceberg cache/glue catalog OK 1m 21s
/iceberg/iceberg cache/glue catalog/iceberg database engine OK 34s 35ms
/iceberg/iceberg cache/glue catalog/iceberg database engine/cache XFail 34s 33ms
/iceberg/iceberg cache/glue catalog/iceberg table engine OK 3s 123ms
/iceberg/iceberg cache/glue catalog/iceberg table engine/cache OK 3s 123ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function OK 44s 146ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cache XFail 44s 145ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922