Iceberg Test Run Report

DateJul 23, 2026 17:32
Duration1h 43m
Framework TestFlows 2.0.250110.1002922

Artifacts

Test artifacts can be found at https://altinity-build-artifacts.s3.amazonaws.com/index.html#REFs/v25.8.28.10001.altinitystable/568824f4327b379e86bce93f12b9cebe0cfd9ff5/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
user.nameMyroTk
version25.8.28.10001.altinitystable
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/v25.8.28.10001.altinitystable/568824f4327b379e86bce93f12b9cebe0cfd9ff5/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash0653c8a8b9c6ad09ea84dc295e9d90dae9590d97
job.nameiceberg_1
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/30020552763
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/v25.8.28.10001.altinitystable/568824f4327b379e86bce93f12b9cebe0cfd9ff5/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.5%OK
<1%Known

Statistics

Units Skip OK Fail XFail
Modules
1
1
Features
37
2
35
Scenarios
483
9
472
2
Checks
340
340
Steps
54493
54458
4
31

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal columnXFail 3s 11ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 573, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 543, 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 58ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 573, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 543, 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\|

Results

Test Name Result Duration
/iceberg OK 1h 43m
/iceberg/iceberg engine OK 1h 30m
/iceberg/iceberg engine/rest catalog OK 1h 30m
/iceberg/iceberg engine/rest catalog/feature OK 1m 3s
/iceberg/iceberg engine/rest catalog/feature/sanity OK 9s 211ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 21s 469ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 3s 122ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 3s 299ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 5s 910ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 872ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 885ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 2s 124ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 2s 102ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 2s 656ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 2s 663ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 2s 324ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 2s 299ms
/iceberg/iceberg engine/rest catalog/feature/select from system databases OK 2s 347ms
/iceberg/iceberg engine/rest catalog/feature OK 15s 511ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 3s 36ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 2s 22ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 4s 616ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 941ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 878ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 2s 11ms
/iceberg/iceberg engine/rest catalog/column rbac OK 11m 26s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 7s 84ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 6s 820ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 6s 670ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 7s 33ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 6s 738ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 6s 644ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 7s 105ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 6s 707ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 6s 728ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 7s 831ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 7s 43ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 6s 914ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 6s 495ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 6s 712ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 6s 755ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 8s 946ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 7s 805ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 7s 339ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 6s 560ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 6s 343ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 7s 159ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 6s 627ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 6s 774ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 6s 464ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 6s 988ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 6s 297ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 6s 670ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 6s 551ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 6s 668ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 7s 224ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 6s 828ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 6s 890ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 6s 530ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 6s 893ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 6s 947ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 6s 508ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 6s 526ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 6s 958ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 6s 544ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 6s 634ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 6s 620ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 6s 575ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 7s 721ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 6s 774ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 6s 624ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 7s 251ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 6s 588ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 7s 51ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 6s 329ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 6s 655ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 6s 343ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 7s 418ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 6s 419ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 7s 131ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 6s 384ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 6s 581ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 6s 528ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 6s 818ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 6s 923ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 6s 596ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 7s 257ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 6s 649ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 6s 220ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 6s 550ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 6s 342ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 6s 921ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 6s 563ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 7s 759ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 6s 906ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 6s 527ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 6s 503ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 6s 540ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 6s 653ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 6s 211ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 6s 146ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 6s 647ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 7s 492ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 6s 214ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 8s 351ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 6s 462ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 6s 477ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 6s 456ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 6s 552ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 7s 16ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 6s 678ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 6s 988ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 6s 554ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 6s 888ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 6s 377ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 6s 450ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 7s 103ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 8s 254ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 6s 923ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 6s 349ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 6s 431ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 6s 111ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 6s 538ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 8s 658ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 6s 350ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 7s 260ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 1m 18s
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 1m 12s
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 3s 11ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 3s 58ms
/iceberg/iceberg engine/rest catalog/feature OK 9s 59ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 3s 8ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 3s 222ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 2s 823ms
/iceberg/iceberg engine/rest catalog/feature OK 1m 49s
/iceberg/iceberg engine/rest catalog/feature/row policies OK 1m 49s
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 970ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 1s 373ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 1s 58ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 845ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 1s 119ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 1s 70ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 1s 125ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 1s 19ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 1s 152ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 1s 125ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 1s 120ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 991ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 1s 9ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 851ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 991ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 907ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 954ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 1s 219ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 1s 50ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 974ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 882ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 1s 80ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 1s 71ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 1s 152ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 1s 135ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 945ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 1s 173ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 1s 157ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 999ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 1s 204ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 1s 162ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 961ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 967ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 1s 122ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 1s 181ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 765ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 1s 37ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 1s 39ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 1s 153ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 847ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 865ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 956ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 880ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 1s 173ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 1s 34ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 1s 229ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 1s 152ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 1s 28ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 1s 146ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 1s 2ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 930ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 1s 124ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 1s 17ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 1s 108ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 1s 84ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 967ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 1s 93ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 1s 141ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 1s 94ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 928ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 1s 84ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 1s 159ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 1s 92ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 857ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 1s 107ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 1s 3ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 1s 4ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 1s 39ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 1s 20ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 908ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 1s 135ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 906ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 1s 95ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 1s 5ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 1s 95ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 1s 18ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 982ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 1s 9ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 895ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 1s 120ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 1s 147ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 1s 132ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 956ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 1s 65ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 1s 77ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 1s 44ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 928ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 1s 94ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 1s 128ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 1s 78ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 991ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 947ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 1s 28ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 1s 26ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 857ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 1s 97ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 1s 68ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 1s 12ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 997ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 999ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 6s 391ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 809ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 209ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 204ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 191ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 342ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 194ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 1s 109ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 955ms
/iceberg/iceberg engine/rest catalog/feature OK 32m 37s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 32m 37s
/iceberg/iceberg engine/rest catalog/feature OK 5s 815ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 2s 926ms
/iceberg/iceberg engine/rest catalog/feature/append OK 2s 886ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 24m 30s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 14s 284ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 14s 891ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 15s 342ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 14s 511ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 14s 813ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 14s 378ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 13s 752ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 14s 870ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 13s 752ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 13s 647ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 14s 96ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 14s 341ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 14s 134ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 14s 126ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 14s 772ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 14s 12ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 15s 197ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 14s 721ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 13s 664ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 14s 89ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 14s 697ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 13s 268ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 13s 869ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 14s 204ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 14s 349ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 14s 206ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 13s 780ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 15s 380ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 13s 957ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 14s 604ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 14s 115ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 14s 139ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 14s 832ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 14s 317ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 14s 526ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 14s 505ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 15s 400ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 14s 663ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 14s 139ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 14s 728ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 13s 512ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 14s 949ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 15s 1ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 14s 844ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 14s 573ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 14s 400ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 14s 788ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 14s 622ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 14s 985ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 14s 473ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 15s 58ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 14s 647ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 14s 983ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 14s 713ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 14s 843ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 14s 776ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 14s 772ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 14s 525ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 14s 794ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 16s 305ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 15s 932ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 13s 980ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 14s 923ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 14s 533ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 14s 235ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 15s 736ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 16s 47ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 15s 272ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 15s 273ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 15s 376ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 14s 941ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 15s 117ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 15s 682ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 14s 948ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 15s 134ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 15s 436ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 15s 145ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 14s 112ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 15s 229ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 15s 182ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 14s 949ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 14s 888ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 15s 135ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 14s 600ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 15s 32ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 14s 676ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 14s 909ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 14s 660ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 14s 823ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 15s 385ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 15s 201ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 15s 47ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 14s 727ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 14s 873ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 14s 831ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 15s 11ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 14s 885ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 14s 180ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 14s 781ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 14s 655ms
/iceberg/iceberg engine/rest catalog/swarm OK 3s 41ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 3s 39ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 2m 31s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 2s 842ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 3s 567ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 4s 26ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 4s 529ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 5s 94ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 5s 827ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 6s 138ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 6s 981ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 6s 768ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 6s 895ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 8s 50ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 8s 366ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 8s 311ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 9s 103ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 9s 756ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 10s 193ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 10s 557ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 11s 282ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 11s 278ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 12s 221ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 12m 47s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 7s 816ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 7s 963ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 7s 565ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 7s 999ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 8s 107ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 7s 954ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 7s 817ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 7s 906ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 8s 7ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 7s 855ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 7s 555ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 7s 606ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 7s 683ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 7s 538ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 7s 331ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 7s 448ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 7s 544ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 7s 705ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 7s 435ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 7s 914ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 7s 317ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 7s 639ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 8s 384ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 8s 201ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 7s 887ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 7s 703ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 7s 481ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 7s 651ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 7s 749ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 7s 646ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 7s 692ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 7s 398ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 7s 642ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 7s 567ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 7s 615ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 7s 412ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 7s 395ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 7s 883ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 7s 803ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 7s 402ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 7s 584ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 7s 491ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 7s 498ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 7s 317ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 7s 444ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 7s 850ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 7s 656ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 7s 495ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 7s 304ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 7s 461ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 7s 696ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 7s 93ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 7s 575ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 7s 534ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 7s 184ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 7s 562ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 7s 511ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 7s 323ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 7s 644ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 7s 717ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 7s 302ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 7s 151ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 7s 593ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 7s 829ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 7s 574ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 7s 680ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 7s 533ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 8s 94ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 7s 924ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 7s 927ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 7s 829ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 7s 716ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 7s 444ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 7s 505ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 7s 567ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 7s 758ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 7s 721ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 7s 196ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 7s 280ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 7s 556ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 7s 279ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 7s 865ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 8s 899ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 8s 187ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 8s 160ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 7s 758ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 8s 38ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 7s 678ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 7s 514ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 7s 784ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 7s 528ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 7s 553ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 7s 524ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 7s 134ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 7s 634ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 7s 937ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 7s 900ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 7s 912ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 8s 205ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 8s 253ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 1m 41s
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type OK 1m 16s
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause OK 6s 529ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type OK 6s 233ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 11s 655ms
/iceberg/iceberg engine/rest catalog/datatypes OK 20s 435ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 20s 433ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 5ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition Skip 3ms
/iceberg/iceberg engine/rest catalog/dot separated column names OK 4s 334ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 1s 929ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 2s 402ms
/iceberg/iceberg engine/rest catalog/sort key timezone OK 23ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and utc timezone Skip 2ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with hour transform and utc timezone Skip 3ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with month transform and utc timezone Skip 2ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with year transform and utc timezone Skip 2ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and positive utc offset timezone Skip 2ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and negative utc offset timezone Skip 2ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and timestamptz type Skip 2ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint OK 4ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint/similar table names hint Skip 2ms
/iceberg/s3 table function OK 1s 805ms
/iceberg/s3 table function/s3 table function OK 1s 803ms
/iceberg/icebergS3 table function OK 2m 4s
/iceberg/icebergS3 table function/rest catalog OK 45s 329ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 8s 213ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 2s 2ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 2s 62ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 2s 106ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 2s 39ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 37s 86ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 16s 259ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 987ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 982ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 303ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 639ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 978ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 994ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 1s 27ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 679ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 360ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 211ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 219ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 197ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 205ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 195ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 194ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 171ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 173ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 184ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 171ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 151ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 130ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 133ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 452ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 771ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 2s 114ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 7ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 965ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 661ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 334ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 277ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 251ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 257ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 211ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 223ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 155ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 252ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 249ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 247ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 216ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 154ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 692ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 26ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 365ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 693ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 2s 40ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 354ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 1s 5ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 656ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 313ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 188ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 170ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 178ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 183ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 138ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 161ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 183ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 175ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 164ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 144ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 115ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 20s 824ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 211ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 190ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 408ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 728ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 970ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 855ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 816ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 625ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 266ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 227ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 207ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 227ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 224ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 214ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 223ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 179ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 211ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 210ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 200ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 174ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 92ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 98ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 293ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 521ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 947ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 891ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 896ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 686ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 437ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 282ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 288ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 290ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 268ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 283ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 281ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 295ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 287ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 283ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 271ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 241ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 774ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 108ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 454ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 772ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 2s 104ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 349ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 1s 1ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 664ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 347ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 179ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 196ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 209ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 179ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 200ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 206ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 160ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 179ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 176ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 166ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 114ms
/iceberg/icebergS3 table function/glue catalog OK 1m 19s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 30s 814ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 2s 156ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 2s 270ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 2s 237ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 24s 146ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 48s 343ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 23s 543ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 1s 453ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 1s 165ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 799ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 141ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 2s 122ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 949ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 954ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 678ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 331ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 184ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 214ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 229ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 192ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 219ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 159ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 197ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 184ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 167ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 167ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 145ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 55ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 59ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 358ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 611ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 977ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 8ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 991ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 670ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 433ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 237ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 261ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 235ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 199ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 243ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 158ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 224ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 208ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 219ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 215ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 187ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 698ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 41ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 380ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 761ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 2s 82ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 358ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 1s 16ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 712ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 315ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 173ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 128ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 175ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 139ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 158ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 142ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 125ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 129ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 122ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 108ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 111ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 24s 797ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 156ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 182ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 384ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 763ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 84ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 920ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 909ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 684ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 333ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 217ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 202ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 240ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 234ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 230ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 201ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 219ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 225ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 222ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 216ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 186ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 999ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 12ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 539ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 259ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 909ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 916ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 884ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 644ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 347ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 304ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 294ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 307ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 286ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 295ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 314ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 292ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 300ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 278ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 289ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 209ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 823ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 526ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 164ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 880ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 2s 459ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 667ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 1s 72ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 936ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 577ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 485ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 278ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 254ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 214ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 257ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 192ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 223ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 200ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 188ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 207ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 128ms
/iceberg/iceberg cache OK 9ms
/iceberg/iceberg cache/rest catalog Skip 3ms
/iceberg/iceberg cache/glue catalog Skip 3ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922