Iceberg Test Run Report

DateApr 16, 2026 17:13
Duration1h 11m
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/a36e13144c06560f7e9ff2bf898b86cc432e90ad/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
user.namezvonand
version25.8.21.20001.altinityantalya
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-25.8/a36e13144c06560f7e9ff2bf898b86cc432e90ad/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash92f4413c775fc750e826951f5d235766c562a98f
job.nameiceberg_1
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/24522203471
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-25.8/a36e13144c06560f7e9ff2bf898b86cc432e90ad/build_arm_binary/clickhouse
as_binaryFalse
base_osNone
keeper_pathNone
zookeeper_versionNone
use_keeperFalse
stressFalse
collect_service_logsTrue
thread_fuzzerFalse
with_analyzerTrue
reuse_envFalse
cicdTrue
minio_uriSecret(name='minio_uri')
minio_root_userSecret(name='minio_root_user')
minio_root_passwordSecret(name='minio_root_password')

Summary

99.3%OK
<1%Known

Statistics

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

Known Fails

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

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

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

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

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

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

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

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

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

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

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

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

61\|              input_format_parquet_bloom_filter_push_down="0"
62\|          )
63\|          assert result.output.strip() == "", error()
64\|  
65\|      with And(f"check that 0 rows were read"):
66\|          read_rows = metrics.get_read_rows(
67\|              log_comment=log_comment_with_pruning,
68\|          )
69\|>         assert int(read_rows.output.strip()) == 0, error(
70\|              f"Expected 0 rows to be read, with where clause: {where_clause}, but got {read_rows.output.strip()}"
71\|          )
72\|
/iceberg/iceberg cache/rest catalog/iceberg database engine/cacheXFail 32s 936ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 350, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 340, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 10, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 118, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 109, in cache
    hits = check_hits(
           ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../parquet/tests/steps/metadata_caching.py", line 469, in check_hits
    assert int(hits) > 0, f"number of hits is less than 1 and = {hits}"
           ^^^^^^^^^^^^^
AssertionError: number of hits is less than 1 and = 0
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cacheXFail 40s 784ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 350, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 340, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 16, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 80, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 71, in cache
    hits = check_hits(
           ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../parquet/tests/steps/metadata_caching.py", line 469, in check_hits
    assert int(hits) > 0, f"number of hits is less than 1 and = {hits}"
           ^^^^^^^^^^^^^
AssertionError: number of hits is less than 1 and = 0
/iceberg/iceberg cache/glue catalog/iceberg database engine/cacheXFail 32s 965ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 350, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 340, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 22, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 118, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 109, in cache
    hits = check_hits(
           ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../parquet/tests/steps/metadata_caching.py", line 469, in check_hits
    assert int(hits) > 0, f"number of hits is less than 1 and = {hits}"
           ^^^^^^^^^^^^^
AssertionError: number of hits is less than 1 and = 0
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cacheXFail 40s 922ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 350, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 179, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 450, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 340, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 28, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 80, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 71, in cache
    hits = check_hits(
           ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../parquet/tests/steps/metadata_caching.py", line 469, in check_hits
    assert int(hits) > 0, f"number of hits is less than 1 and = {hits}"
           ^^^^^^^^^^^^^
AssertionError: number of hits is less than 1 and = 0

Results

Test Name Result Duration
/iceberg OK 1h 11m
/iceberg/iceberg engine OK 1h 3m
/iceberg/iceberg engine/rest catalog OK 1h 3m
/iceberg/iceberg engine/rest catalog/feature OK 39s 695ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 4s 378ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 12s 800ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 2s 38ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 124ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 3s 778ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 518ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 455ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 652ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 625ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 2s 939ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 1s 847ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 823ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 1s 705ms
/iceberg/iceberg engine/rest catalog/feature OK 11s 144ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 2s 132ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 529ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 3s 161ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 426ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 423ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 1s 468ms
/iceberg/iceberg engine/rest catalog/column rbac OK 7m 15s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 4s 303ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 4s 280ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 4s 66ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 4s 304ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 4s 281ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 4s 132ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 4s 382ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 4s 235ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 4s 226ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 4s 775ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 4s 429ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 4s 265ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 4s 136ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 4s 278ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 4s 107ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 5s 408ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 4s 785ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 4s 359ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 4s 115ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 4s 128ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 4s 254ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 4s 89ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 4s 192ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 4s 82ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 4s 468ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 4s 20ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 4s 253ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 4s 162ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 4s 276ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 4s 446ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 4s 241ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 4s 242ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 4s 127ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 4s 489ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 4s 180ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 4s 134ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 4s 68ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 4s 231ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 4s 228ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 4s 83ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 4s 339ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 4s 68ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 4s 917ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 4s 286ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 4s 135ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 4s 722ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 4s 54ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 4s 475ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 3s 976ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 4s 255ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 4s 96ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 4s 714ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 4s 85ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 4s 393ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 4s 13ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 4s 20ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 3s 992ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 4s 312ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 4s 453ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 4s 161ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 4s 702ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 4s 202ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 4s 120ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 4s 193ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 4s 78ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 4s 164ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 4s 74ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 4s 836ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 4s 442ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 4s 84ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 4s 70ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 4s 364ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 4s 307ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 4s 54ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 4s 99ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 4s 390ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 4s 716ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 4s 26ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 5s 382ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 4s 247ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 4s 186ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 4s 198ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 4s 264ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 4s 500ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 4s 263ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 4s 447ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 4s 250ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 4s 486ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 4s 7ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 4s 130ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 4s 417ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 5s 432ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 4s 589ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 4s 15ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 4s 251ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 4s 183ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 4s 166ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 5s 483ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 4s 210ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 4s 640ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 1m 30s
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 1m 27s
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 1s 923ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 1s 998ms
/iceberg/iceberg engine/rest catalog/feature OK 6s 683ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 2s 247ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 2s 361ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 2s 71ms
/iceberg/iceberg engine/rest catalog/feature OK 1m 11s
/iceberg/iceberg engine/rest catalog/feature/row policies OK 1m 11s
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 655ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 838ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 654ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 586ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 728ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 711ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 678ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 644ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 716ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 697ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 682ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 655ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 638ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 605ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 591ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 582ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 629ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 723ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 690ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 641ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 643ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 656ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 676ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 714ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 707ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 587ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 729ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 703ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 650ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 715ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 718ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 706ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 670ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 723ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 715ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 595ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 674ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 675ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 745ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 619ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 626ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 718ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 614ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 777ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 679ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 758ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 738ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 698ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 787ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 689ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 615ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 761ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 678ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 715ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 697ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 648ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 746ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 713ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 705ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 596ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 680ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 715ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 721ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 582ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 708ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 670ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 689ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 709ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 645ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 647ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 723ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 576ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 708ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 643ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 716ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 644ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 659ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 683ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 590ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 689ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 721ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 702ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 581ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 657ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 715ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 645ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 570ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 707ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 730ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 706ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 610ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 574ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 641ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 724ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 582ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 646ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 714ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 635ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 655ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 642ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 3s 932ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 469ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 114ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 108ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 109ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 216ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 109ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 673ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 549ms
/iceberg/iceberg engine/rest catalog/feature OK 20m 46s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 20m 46s
/iceberg/iceberg engine/rest catalog/feature OK 4s 196ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 2s 128ms
/iceberg/iceberg engine/rest catalog/feature/append OK 2s 66ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 16m 10s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 9s 562ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 10s 0ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 10s 114ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 9s 281ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 9s 594ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 9s 507ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 9s 124ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 9s 631ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 9s 725ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 9s 299ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 9s 320ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 10s 95ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 9s 655ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 9s 729ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 9s 898ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 9s 202ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 9s 449ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 9s 518ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 9s 607ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 9s 470ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 10s 235ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 9s 329ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 9s 756ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 10s 70ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 9s 644ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 9s 810ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 9s 163ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 10s 172ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 9s 648ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 9s 883ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 9s 459ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 9s 767ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 9s 958ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 9s 577ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 9s 602ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 9s 706ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 10s 391ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 9s 786ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 9s 494ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 10s 11ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 9s 327ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 9s 620ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 9s 572ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 9s 177ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 9s 597ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 9s 430ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 9s 286ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 9s 728ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 10s 73ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 9s 373ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 9s 698ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 10s 51ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 9s 872ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 9s 816ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 9s 348ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 10s 10ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 9s 673ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 9s 867ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 9s 462ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 10s 294ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 10s 249ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 9s 762ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 9s 456ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 9s 634ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 9s 993ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 9s 910ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 9s 556ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 9s 88ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 9s 802ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 9s 326ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 9s 929ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 9s 824ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 10s 878ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 10s 380ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 9s 697ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 10s 216ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 9s 654ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 9s 309ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 10s 299ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 10s 52ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 9s 747ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 9s 571ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 9s 912ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 9s 91ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 9s 936ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 9s 428ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 9s 690ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 9s 709ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 9s 315ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 9s 607ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 9s 611ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 9s 960ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 9s 638ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 9s 614ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 9s 145ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 9s 922ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 9s 960ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 9s 546ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 9s 758ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 10s 57ms
/iceberg/iceberg engine/rest catalog/swarm OK 2s 400ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 398ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 1m 46s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 1s 988ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 451ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 2s 813ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 3s 1ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 3s 325ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 3s 614ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 3s 904ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 4s 477ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 4s 707ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 5s 412ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 5s 345ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 5s 582ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 6s 259ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 6s 619ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 6s 917ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 7s 499ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 7s 438ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 7s 890ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 8s 468ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 8s 939ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 8m 10s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 4s 751ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 5s 5ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 4s 833ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 4s 772ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 4s 784ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 4s 903ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 5s 47ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 4s 972ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 4s 950ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 5s 90ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 4s 946ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 4s 678ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 4s 757ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 4s 829ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 4s 826ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 4s 763ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 4s 949ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 4s 939ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 5s 189ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 5s 41ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 4s 759ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 4s 860ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 4s 930ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 4s 922ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 4s 656ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 4s 643ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 4s 786ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 5s 28ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 4s 850ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 4s 980ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 4s 814ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 4s 837ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 4s 889ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 4s 872ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 4s 990ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 4s 923ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 4s 724ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 4s 912ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 5s 0ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 4s 746ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 5s 145ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 4s 830ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 4s 839ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 4s 845ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 4s 684ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 5s 24ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 5s 5ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 4s 941ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 4s 814ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 4s 899ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 5s 26ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 4s 714ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 5s 102ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 4s 831ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 4s 853ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 4s 958ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 5s 26ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 4s 738ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 5s 21ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 5s 22ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 4s 917ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 5s 63ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 4s 995ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 118ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 4s 955ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 5s 87ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 4s 983ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 4s 919ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 5s 66ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 5s 1ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 4s 973ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 4s 877ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 4s 791ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 4s 992ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 4s 981ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 4s 943ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 4s 835ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 4s 684ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 4s 739ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 4s 975ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 4s 827ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 4s 901ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 4s 842ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 4s 911ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 4s 891ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 4s 933ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 4s 944ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 4s 825ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 4s 912ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 4s 969ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 4s 859ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 4s 799ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 4s 922ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 4s 689ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 4s 909ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 4s 983ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 5s 3ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 4s 954ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 5s 64ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 4s 852ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 1m 0s
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type OK 45s 149ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause OK 3s 926ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type OK 3s 772ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 7s 547ms
/iceberg/iceberg engine/rest catalog/datatypes OK 12s 731ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 12s 730ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 3m 52s
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition OK 3m 52s
/iceberg/iceberg engine/rest catalog/dot separated column names OK 3s 454ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 1s 607ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 1s 845ms
/iceberg/s3 table function OK 1s 469ms
/iceberg/s3 table function/s3 table function OK 1s 468ms
/iceberg/icebergS3 table function OK 1m 54s
/iceberg/icebergS3 table function/rest catalog OK 1m 14s
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 48s 747ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 1s 525ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 656ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 22s 783ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 22s 778ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 26s 124ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 11s 492ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 598ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 589ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 789ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 992ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 224ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 634ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 648ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 424ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 231ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 207ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 213ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 222ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 210ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 198ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 183ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 215ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 186ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 178ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 175ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 149ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 719ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 785ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 989ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 190ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 446ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 767ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 687ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 446ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 299ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 276ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 309ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 353ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 325ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 320ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 286ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 294ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 333ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 308ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 320ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 267ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 435ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 661ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 856ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 55ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 482ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 857ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 649ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 637ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 435ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 335ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 317ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 138ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 122ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 140ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 148ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 155ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 153ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 131ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 137ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 115ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 14s 630ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 776ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 783ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 967ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 154ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 427ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 657ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 626ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 420ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 282ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 182ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 286ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 232ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 228ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 254ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 265ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 215ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 229ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 232ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 226ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 187ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 910ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 911ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 39ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 271ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 610ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 704ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 708ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 538ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 380ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 353ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 384ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 348ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 330ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 380ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 336ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 355ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 330ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 359ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 337ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 275ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 470ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 673ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 870ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 79ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 350ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 886ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 694ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 498ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 270ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 249ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 241ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 246ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 221ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 213ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 205ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 219ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 212ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 205ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 202ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 138ms
/iceberg/icebergS3 table function/glue catalog OK 39s 264ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 6s 598ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 642ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 650ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 1s 664ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 1s 638ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 32s 664ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 16s 400ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 687ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 689ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 887ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 109ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 309ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 660ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 640ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 449ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 231ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 178ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 202ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 182ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 183ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 190ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 142ms
/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 211ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 188ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 186ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 164ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 816ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 804ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 37ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 147ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 520ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 748ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 651ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 505ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 361ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 299ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 386ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 332ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 337ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 357ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 291ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 319ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 246ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 327ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 227ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 287ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 449ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 655ms
/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 49ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 300ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 861ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 662ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 473ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 238ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 181ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 160ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 149ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 154ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 161ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 148ms
/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 167ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 158ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 157ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 138ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 16s 261ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 746ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 747ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 939ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 135ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 405ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 656ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 660ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 444ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 278ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 253ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 281ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 282ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 246ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 273ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 213ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 231ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 228ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 196ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 230ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 179ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 794ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 849ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 64ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 288ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 616ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 798ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 783ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 581ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 363ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 322ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 327ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 363ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 363ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 345ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 237ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 339ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 381ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 379ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 366ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 317ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 462ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 687ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 878ms
/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 349ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 895ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 678ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 491ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 255ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 183ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 205ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 200ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 186ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 170ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 211ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 201ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 197ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 179ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 186ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 128ms
/iceberg/iceberg cache OK 2m 33s
/iceberg/iceberg cache/rest catalog OK 1m 16s
/iceberg/iceberg cache/rest catalog/iceberg database engine OK 32s 937ms
/iceberg/iceberg cache/rest catalog/iceberg database engine/cache XFail 32s 936ms
/iceberg/iceberg cache/rest catalog/iceberg table engine OK 2s 711ms
/iceberg/iceberg cache/rest catalog/iceberg table engine/cache OK 2s 710ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function OK 40s 785ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cache XFail 40s 784ms
/iceberg/iceberg cache/glue catalog OK 1m 16s
/iceberg/iceberg cache/glue catalog/iceberg database engine OK 32s 966ms
/iceberg/iceberg cache/glue catalog/iceberg database engine/cache XFail 32s 965ms
/iceberg/iceberg cache/glue catalog/iceberg table engine OK 2s 737ms
/iceberg/iceberg cache/glue catalog/iceberg table engine/cache OK 2s 736ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function OK 40s 924ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cache XFail 40s 922ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922