Iceberg Test Run Report

DateMay 04, 2026 18:01
Duration1h 14m
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/e1a7eb14c505eff84ec1dbf50b0a85c810ffc2f7/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
user.namestrtgbb
version25.8.22.20001.altinityantalya
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-25.8/e1a7eb14c505eff84ec1dbf50b0a85c810ffc2f7/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash64a6bf5213cc8460bd31f76286a475c77ec6a9ad
job.nameiceberg_1
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/25331533370
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-25.8/e1a7eb14c505eff84ec1dbf50b0a85c810ffc2f7/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

98.4%OK
<1%Known

Statistics

Units Skip OK Fail XFail
Modules
1
1
Features
43
43
Scenarios
489
8
475
6
Checks
340
340
Steps
57359
57325
8
26

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal columnXFail 3s 155ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 481, 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 451, 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 3s 218ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 481, 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 451, 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 899ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 481, 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 467, 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 41s 48ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 481, 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 467, 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 33s 135ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 481, 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 467, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 22, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 118, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 109, in cache
    hits = check_hits(
           ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../parquet/tests/steps/metadata_caching.py", line 469, in check_hits
    assert int(hits) > 0, f"number of hits is less than 1 and = {hits}"
           ^^^^^^^^^^^^^
AssertionError: number of hits is less than 1 and = 0
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cacheXFail 41s 76ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 481, 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 467, 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 14m
/iceberg/iceberg engine OK 1h 5m
/iceberg/iceberg engine/rest catalog OK 1h 5m
/iceberg/iceberg engine/rest catalog/feature OK 44s 119ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 4s 776ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 13s 676ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 2s 125ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 240ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 4s 91ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 559ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 544ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 722ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 691ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 3s 116ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 2s 85ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 814ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 1s 818ms
/iceberg/iceberg engine/rest catalog/feature/select from system databases OK 1s 848ms
/iceberg/iceberg engine/rest catalog/feature OK 11s 959ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 2s 285ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 658ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 3s 382ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 579ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 532ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 1s 517ms
/iceberg/iceberg engine/rest catalog/column rbac OK 7m 51s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 4s 652ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 4s 498ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 4s 297ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 4s 591ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 4s 565ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 4s 477ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 4s 701ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 4s 547ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 4s 781ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 5s 354ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 4s 821ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 4s 577ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 4s 457ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 4s 627ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 4s 406ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 5s 825ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 5s 189ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 4s 687ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 4s 402ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 4s 329ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 4s 666ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 4s 563ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 4s 575ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 4s 321ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 4s 791ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 4s 393ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 4s 633ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 4s 562ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 4s 670ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 4s 847ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 4s 550ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 4s 530ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 4s 406ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 4s 949ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 4s 597ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 4s 457ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 4s 481ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 4s 488ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 4s 505ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 4s 353ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 4s 623ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 4s 481ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 5s 332ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 4s 656ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 4s 446ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 5s 85ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 4s 488ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 4s 970ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 4s 433ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 4s 613ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 4s 391ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 5s 109ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 4s 444ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 4s 647ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 4s 375ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 4s 418ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 4s 456ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 4s 521ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 4s 851ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 4s 593ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 5s 73ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 4s 554ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 4s 409ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 4s 547ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 4s 415ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 4s 444ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 4s 428ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 5s 334ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 4s 773ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 4s 501ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 4s 407ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 4s 650ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 4s 799ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 4s 672ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 4s 473ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 4s 823ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 5s 169ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 4s 351ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 5s 854ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 4s 559ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 4s 501ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 4s 526ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 4s 444ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 4s 824ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 4s 563ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 4s 944ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 4s 741ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 4s 865ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 4s 289ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 4s 628ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 4s 799ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 5s 901ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 4s 825ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 4s 393ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 4s 592ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 4s 426ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 4s 544ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 5s 655ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 4s 587ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 5s 12ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 1m 11s
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 1m 5s
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 3s 155ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 3s 218ms
/iceberg/iceberg engine/rest catalog/feature OK 6s 760ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 2s 243ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 2s 399ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 2s 115ms
/iceberg/iceberg engine/rest catalog/feature OK 1m 15s
/iceberg/iceberg engine/rest catalog/feature/row policies OK 1m 15s
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 739ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 873ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 699ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 620ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 753ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 763ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 751ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 703ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 740ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 756ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 707ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 686ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 698ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 650ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 626ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 629ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 660ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 772ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 783ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 715ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 698ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 686ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 673ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 756ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 799ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 619ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 814ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 773ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 704ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 771ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 753ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 688ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 730ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 791ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 743ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 615ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 731ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 732ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 759ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 619ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 611ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 687ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 648ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 838ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 702ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 753ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 757ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 677ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 748ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 680ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 638ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 811ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 693ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 764ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 739ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 678ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 777ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 802ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 766ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 614ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 719ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 759ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 760ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 594ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 750ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 694ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 682ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 795ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 683ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 674ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 743ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 626ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 801ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 708ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 736ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 679ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 673ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 665ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 630ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 732ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 757ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 727ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 589ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 669ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 735ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 663ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 616ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 756ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 734ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 750ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 635ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 609ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 680ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 762ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 623ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 723ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 798ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 699ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 674ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 663ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 4s 181ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 503ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 124ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 120ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 112ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 246ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 122ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 686ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 584ms
/iceberg/iceberg engine/rest catalog/feature OK 21m 50s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 21m 50s
/iceberg/iceberg engine/rest catalog/feature OK 4s 429ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 2s 236ms
/iceberg/iceberg engine/rest catalog/feature/append OK 2s 191ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 16m 50s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 10s 109ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 10s 498ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 10s 680ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 9s 916ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 10s 3ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 9s 942ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 9s 585ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 10s 285ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 10s 201ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 9s 881ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 9s 946ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 10s 666ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 10s 88ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 10s 110ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 10s 360ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 9s 494ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 9s 745ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 9s 948ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 10s 499ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 9s 734ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 10s 526ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 9s 582ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 9s 866ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 10s 283ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 9s 796ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 10s 183ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 9s 448ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 10s 557ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 9s 824ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 9s 909ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 9s 721ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 9s 846ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 10s 150ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 9s 952ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 9s 911ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 9s 766ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 10s 433ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 9s 897ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 9s 729ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 10s 553ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 9s 642ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 9s 934ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 9s 606ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 9s 503ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 9s 877ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 9s 500ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 9s 467ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 9s 834ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 10s 334ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 9s 705ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 10s 468ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 10s 536ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 10s 171ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 10s 187ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 9s 736ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 10s 243ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 9s 882ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 10s 55ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 9s 877ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 10s 618ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 10s 642ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 10s 494ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 9s 880ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 10s 277ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 10s 391ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 10s 763ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 10s 466ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 9s 366ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 10s 244ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 9s 594ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 10s 210ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 10s 205ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 11s 307ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 11s 15ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 10s 238ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 10s 977ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 10s 101ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 9s 905ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 10s 858ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 10s 434ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 10s 366ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 10s 220ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 10s 397ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 9s 512ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 10s 560ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 9s 983ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 10s 178ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 10s 452ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 9s 867ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 10s 100ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 9s 856ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 10s 247ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 9s 781ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 10s 8ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 9s 625ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 10s 86ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 10s 608ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 9s 938ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 9s 955ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 10s 243ms
/iceberg/iceberg engine/rest catalog/swarm OK 2s 699ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 698ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 1m 48s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 1s 996ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 556ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 2s 759ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 3s 141ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 3s 439ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 3s 691ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 4s 55ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 4s 565ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 4s 954ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 5s 178ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 5s 468ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 5s 541ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 6s 364ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 6s 600ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 6s 975ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 7s 686ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 7s 744ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 7s 982ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 8s 422ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 9s 162ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 8m 8s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 4s 804ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 4s 974ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 4s 985ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 4s 892ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 4s 975ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 4s 936ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 4s 919ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 5s 69ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 4s 958ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 4s 965ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 5s 93ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 4s 757ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 4s 862ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 4s 905ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 4s 777ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 4s 768ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 5s 46ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 4s 936ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 4s 839ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 4s 930ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 4s 985ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 4s 816ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 4s 892ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 5s 52ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 4s 681ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 4s 654ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 4s 818ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 4s 944ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 4s 808ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 4s 923ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 4s 855ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 4s 949ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 4s 902ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 4s 872ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 4s 934ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 4s 870ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 4s 824ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 5s 29ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 4s 902ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 4s 815ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 4s 941ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 4s 843ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 5s 43ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 4s 824ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 4s 764ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 5s 2ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 4s 795ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 4s 840ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 4s 834ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 4s 825ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 5s 7ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 4s 746ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 4s 933ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 4s 773ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 4s 886ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 4s 947ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 4s 859ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 4s 821ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 4s 938ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 4s 912ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 4s 898ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 4s 764ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 4s 863ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 32ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 4s 901ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 5s 80ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 4s 840ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 4s 795ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 4s 947ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 4s 937ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 4s 900ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 4s 848ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 4s 676ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 4s 970ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 4s 973ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 4s 911ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 4s 892ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 4s 825ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 4s 791ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 4s 871ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 4s 807ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 4s 841ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 4s 902ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 4s 782ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 4s 927ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 4s 751ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 4s 839ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 4s 708ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 4s 977ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 5s 17ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 5s 62ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 4s 795ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 4s 844ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 4s 663ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 4s 858ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 4s 945ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 5s 3ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 4s 987ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 4s 897ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 4s 792ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 1m 7s
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type OK 50s 957ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause OK 4s 8ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type OK 4s 996ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 7s 764ms
/iceberg/iceberg engine/rest catalog/datatypes OK 13s 168ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 13s 167ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 3m 54s
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition OK 3m 54s
/iceberg/iceberg engine/rest catalog/dot separated column names OK 3s 467ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 1s 591ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 1s 874ms
/iceberg/iceberg engine/rest catalog/sort key timezone OK 9ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and utc timezone Skip 1ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with hour transform and utc timezone Skip 1ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with month transform and utc timezone Skip 843us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with year transform and utc timezone Skip 791us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and positive utc offset timezone Skip 782us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and negative utc offset timezone Skip 1ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and timestamptz type Skip 862us
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint OK 1ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint/similar table names hint Skip 921us
/iceberg/s3 table function OK 1s 452ms
/iceberg/s3 table function/s3 table function OK 1s 451ms
/iceberg/icebergS3 table function OK 1m 34s
/iceberg/icebergS3 table function/rest catalog OK 33s 158ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 6s 559ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 1s 554ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 698ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 1s 635ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 1s 666ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 26s 586ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 11s 722ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 666ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 656ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 818ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 33ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 294ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 640ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 629ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 481ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 275ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 186ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 190ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 190ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 188ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 188ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 188ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 199ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 188ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 190ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 186ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 156ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 876ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 862ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 929ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 224ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 513ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 600ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 611ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 582ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 364ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 294ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 286ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 295ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 307ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 309ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 208ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 286ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 215ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 211ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 283ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 285ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 441ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 652ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 847ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 43ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 268ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 853ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 641ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 426ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 221ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 174ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 133ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 140ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 162ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 163ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 138ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 118ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 135ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 121ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 126ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 122ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 14s 862ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 770ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 935ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 766ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 142ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 406ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 668ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 645ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 504ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 273ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 279ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 265ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 276ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 283ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 270ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 236ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 269ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 259ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 246ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 240ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 188ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 887ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 875ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 28ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 243ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 519ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 753ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 695ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 562ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 352ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 308ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 317ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 326ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 384ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 364ms
/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 334ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 328ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 361ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 332ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 297ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 460ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 653ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 875ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 85ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 334ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 902ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 702ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 488ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 282ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 174ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 371ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 359ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 344ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 332ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 385ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 204ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 199ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 180ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 183ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 135ms
/iceberg/icebergS3 table function/glue catalog OK 1m 0s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 27s 829ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 615ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 682ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 22s 832ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 1s 697ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 33s 67ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 16s 360ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 741ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 731ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 906ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 106ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 359ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 636ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 650ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 442ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 265ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 226ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 176ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 191ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 195ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 180ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 154ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 193ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 171ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 181ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 171ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 162ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 885ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 842ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 956ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 269ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 488ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 696ms
/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 550ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 315ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 288ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 294ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 308ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 309ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 305ms
/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 294ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 284ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 317ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 305ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 275ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 454ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 649ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 870ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 70ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 336ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 893ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 671ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 461ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 253ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 118ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 135ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 144ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 135ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 137ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 121ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 136ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 143ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 131ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 129ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 130ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 16s 704ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 743ms
/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 903ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 95ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 374ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 625ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 628ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 465ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 280ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 280ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 258ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 263ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 269ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 236ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 243ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 254ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 246ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 264ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 271ms
/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 841ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 872ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 46ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 270ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 521ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 726ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 678ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 492ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 367ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 344ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 386ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 409ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 402ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 394ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 363ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 371ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 360ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 303ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 342ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 303ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 453ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 656ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 872ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 69ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 378ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 920ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 724ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 520ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 309ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 235ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 212ms
/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 216ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 202ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 219ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 186ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 212ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 206ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 195ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 125ms
/iceberg/iceberg cache OK 2m 33s
/iceberg/iceberg cache/rest catalog OK 1m 16s
/iceberg/iceberg cache/rest catalog/iceberg database engine OK 32s 900ms
/iceberg/iceberg cache/rest catalog/iceberg database engine/cache XFail 32s 899ms
/iceberg/iceberg cache/rest catalog/iceberg table engine OK 2s 473ms
/iceberg/iceberg cache/rest catalog/iceberg table engine/cache OK 2s 472ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function OK 41s 49ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cache XFail 41s 48ms
/iceberg/iceberg cache/glue catalog OK 1m 16s
/iceberg/iceberg cache/glue catalog/iceberg database engine OK 33s 137ms
/iceberg/iceberg cache/glue catalog/iceberg database engine/cache XFail 33s 135ms
/iceberg/iceberg cache/glue catalog/iceberg table engine OK 2s 625ms
/iceberg/iceberg cache/glue catalog/iceberg table engine/cache OK 2s 624ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function OK 41s 78ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cache XFail 41s 76ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922