Iceberg Test Run Report

DateFeb 18, 2026 16:33
Duration1h 16m
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.16.10001.altinitystable/50d19e9216a5e7d6b48ee263986e7ccae8cb2f18/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
user.namestrtgbb
version25.8.16.10001.altinitystable
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/v25.8.16.10001.altinitystable/50d19e9216a5e7d6b48ee263986e7ccae8cb2f18/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash979bb27171f92724bcd8f086989ba623f2e03fdc
job.namesuite
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/22144652887
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/v25.8.16.10001.altinitystable/50d19e9216a5e7d6b48ee263986e7ccae8cb2f18/build_arm_binary/clickhouse
as_binaryFalse
base_osNone
keeper_pathNone
zookeeper_versionNone
use_keeperFalse
stressFalse
collect_service_logsTrue
thread_fuzzerFalse
with_analyzerTrue
reuse_envFalse
cicdTrue
minio_uriSecret(name='minio_uri')
minio_root_userSecret(name='minio_root_user')
minio_root_passwordSecret(name='minio_root_password')

Summary

99.4%OK
<1%Known

Statistics

Units Skip OK Fail XFail
Modules
1
1
Features
35
2
33
Scenarios
474
1
471
2
Checks
340
340
Steps
54175
54140
4
31

Known Fails

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

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

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

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

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

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

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

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

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

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

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

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

61\|              input_format_parquet_bloom_filter_push_down="0"
62\|          )
63\|          assert result.output.strip() == "", error()
64\|  
65\|      with And(f"check that 0 rows were read"):
66\|          read_rows = metrics.get_read_rows(
67\|              log_comment=log_comment_with_pruning,
68\|          )
69\|>         assert int(read_rows.output.strip()) == 0, error(
70\|              f"Expected 0 rows to be read, with where clause: {where_clause}, but got {read_rows.output.strip()}"
71\|          )
72\|

Results

Test Name Result Duration
/iceberg OK 1h 16m
/iceberg/iceberg engine OK 1h 9m
/iceberg/iceberg engine/rest catalog OK 1h 9m
/iceberg/iceberg engine/rest catalog/feature OK 46s 603ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 5s 321ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 15s 791ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 2s 439ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 599ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 4s 636ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 634ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 612ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 890ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 862ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 2s 314ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 2s 174ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 2s 136ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 2s 181ms
/iceberg/iceberg engine/rest catalog/feature OK 16s 18ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 2s 851ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 2s 217ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 4s 732ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 2s 65ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 2s 114ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 2s 32ms
/iceberg/iceberg engine/rest catalog/column rbac OK 8m 54s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 5s 802ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 5s 272ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 5s 398ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 5s 194ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 4s 936ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 4s 843ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 5s 86ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 5s 180ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 5s 177ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 5s 913ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 5s 386ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 5s 33ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 4s 924ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 5s 480ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 5s 179ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 6s 986ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 5s 449ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 5s 71ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 4s 917ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 5s 484ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 5s 991ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 5s 28ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 5s 6ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 4s 694ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 5s 220ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 4s 886ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 4s 937ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 4s 824ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 4s 910ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 5s 161ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 5s 221ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 6s 37ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 4s 965ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 5s 241ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 4s 804ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 5s 620ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 5s 953ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 5s 911ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 5s 969ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 5s 651ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 5s 781ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 5s 107ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 6s 448ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 5s 891ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 5s 745ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 6s 858ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 5s 461ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 5s 893ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 5s 151ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 5s 221ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 4s 997ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 5s 564ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 4s 665ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 4s 832ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 4s 666ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 5s 462ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 5s 410ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 5s 211ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 5s 265ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 4s 847ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 5s 223ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 4s 844ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 4s 778ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 5s 207ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 4s 661ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 4s 653ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 4s 559ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 5s 508ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 5s 288ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 5s 124ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 4s 678ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 4s 871ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 4s 916ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 4s 607ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 4s 537ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 5s 62ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 5s 604ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 4s 637ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 6s 395ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 5s 73ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 5s 133ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 4s 913ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 4s 984ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 5s 167ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 4s 929ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 4s 968ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 5s 4ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 5s 473ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 4s 682ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 5s 46ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 5s 264ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 6s 195ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 5s 103ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 4s 655ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 5s 113ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 6s 126ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 5s 621ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 7s 150ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 6s 486ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 5s 967ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 1m 5s
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 1m 0s
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 2s 398ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 2s 353ms
/iceberg/iceberg engine/rest catalog/feature OK 8s 304ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 2s 644ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 3s 106ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 2s 552ms
/iceberg/iceberg engine/rest catalog/feature OK 1m 31s
/iceberg/iceberg engine/rest catalog/feature/row policies OK 1m 31s
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 776ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 1s 156ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 810ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 677ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 894ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 963ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 871ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 852ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 836ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 944ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 1s 70ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 832ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 810ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 800ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 788ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 798ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 891ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 1s 59ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 1s 72ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 999ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 1s 39ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 823ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 1s 37ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 912ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 1s 51ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 731ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 1s 14ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 1s 41ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 839ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 983ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 915ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 905ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 897ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 1s 56ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 1s 152ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 978ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 880ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 912ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 898ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 790ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 711ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 879ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 671ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 1s 49ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 757ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 1s 3ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 1s 60ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 956ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 970ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 950ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 822ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 997ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 1s 32ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 942ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 1s 144ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 861ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 1s 23ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 840ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 807ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 677ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 805ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 799ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 799ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 663ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 844ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 733ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 768ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 844ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 751ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 732ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 949ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 897ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 991ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 732ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 848ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 744ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 758ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 820ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 672ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 841ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 888ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 796ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 692ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 797ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 762ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 753ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 657ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 839ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 765ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 811ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 747ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 690ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 709ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 778ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 687ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 805ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 826ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 777ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 716ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 797ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 5s 155ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 710ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 127ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 140ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 136ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 275ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 153ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 879ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 775ms
/iceberg/iceberg engine/rest catalog/feature OK 26m 0s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 26m 0s
/iceberg/iceberg engine/rest catalog/feature OK 4s 868ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 2s 499ms
/iceberg/iceberg engine/rest catalog/feature/append OK 2s 366ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 17m 23s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 10s 829ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 10s 686ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 11s 45ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 10s 480ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 10s 717ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 11s 862ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 10s 471ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 10s 802ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 10s 991ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 10s 456ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 10s 464ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 10s 864ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 10s 816ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 10s 684ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 11s 33ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 10s 485ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 10s 621ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 10s 570ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 10s 557ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 10s 92ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 10s 806ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 10s 343ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 10s 552ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 10s 968ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 10s 598ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 10s 672ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 10s 120ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 10s 692ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 10s 224ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 10s 544ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 10s 375ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 10s 517ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 10s 878ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 10s 511ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 11s 17ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 10s 691ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 10s 732ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 10s 719ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 10s 333ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 10s 538ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 10s 279ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 10s 887ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 10s 721ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 10s 425ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 10s 693ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 10s 228ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 9s 971ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 9s 886ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 10s 199ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 9s 929ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 10s 357ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 10s 552ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 10s 512ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 9s 950ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 10s 36ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 10s 354ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 10s 126ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 10s 48ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 10s 54ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 10s 512ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 10s 321ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 10s 178ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 10s 73ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 9s 772ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 10s 259ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 10s 226ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 10s 23ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 9s 507ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 10s 168ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 9s 798ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 10s 146ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 9s 867ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 10s 792ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 10s 846ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 10s 493ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 10s 721ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 10s 218ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 9s 664ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 10s 651ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 10s 250ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 10s 368ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 10s 358ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 10s 508ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 9s 673ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 10s 440ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 10s 250ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 9s 950ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 10s 26ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 10s 203ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 10s 415ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 10s 211ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 10s 611ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 10s 756ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 10s 292ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 9s 739ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 10s 666ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 10s 538ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 10s 282ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 10s 828ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 10s 795ms
/iceberg/iceberg engine/rest catalog/swarm OK 2s 601ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 600ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 2m 3s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 2s 220ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 660ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 3s 109ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 3s 370ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 3s 729ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 4s 293ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 4s 405ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 4s 960ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 5s 351ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 5s 300ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 6s 302ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 6s 531ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 7s 17ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 7s 308ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 7s 693ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 9s 43ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 9s 203ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 9s 687ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 10s 161ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 10s 951ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 9m 18s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 6s 121ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 5s 971ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 5s 697ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 5s 858ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 5s 958ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 6s 347ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 6s 557ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 6s 334ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 6s 77ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 6s 106ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 6s 160ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 5s 927ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 6s 247ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 6s 223ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 6s 48ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 6s 19ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 6s 101ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 5s 854ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 5s 488ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 5s 637ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 5s 574ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 5s 382ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 5s 499ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 6s 19ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 5s 492ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 5s 477ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 5s 671ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 5s 659ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 5s 593ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 5s 748ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 5s 588ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 5s 519ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 5s 689ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 5s 666ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 7s 665ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 6s 297ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 5s 613ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 5s 927ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 5s 793ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 5s 696ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 5s 925ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 6s 29ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 5s 581ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 5s 575ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 5s 467ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 5s 990ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 5s 581ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 5s 422ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 5s 62ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 5s 225ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 5s 385ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 5s 235ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 5s 504ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 5s 323ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 5s 231ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 5s 339ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 5s 445ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 5s 206ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 5s 415ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 5s 452ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 5s 94ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 5s 82ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 5s 327ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 293ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 5s 222ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 5s 411ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 5s 163ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 5s 323ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 5s 814ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 5s 275ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 5s 290ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 5s 179ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 4s 945ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 5s 388ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 5s 292ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 5s 392ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 5s 146ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 5s 59ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 5s 709ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 5s 613ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 5s 79ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 5s 223ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 5s 145ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 5s 137ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 5s 200ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 5s 95ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 5s 434ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 5s 165ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 5s 288ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 5s 248ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 5s 206ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 5s 455ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 5s 808ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 5s 254ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 5s 516ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 5s 679ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 5s 744ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 5s 505ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 5s 463ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 5s 467ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 1m 11s
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type OK 53s 692ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause OK 6s 495ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type OK 3s 879ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 7s 784ms
/iceberg/iceberg engine/rest catalog/datatypes OK 13s 524ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 13s 523ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 2ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition Skip 1ms
/iceberg/iceberg engine/rest catalog/dot separated column names OK 4s 59ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 1s 936ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 2s 121ms
/iceberg/s3 table function OK 1s 601ms
/iceberg/s3 table function/s3 table function OK 1s 600ms
/iceberg/icebergS3 table function OK 1m 37s
/iceberg/icebergS3 table function/rest catalog OK 35s 566ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 7s 82ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 1s 749ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 843ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 1s 736ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 1s 750ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 28s 471ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 12s 293ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 676ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 677ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 891ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 138ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 422ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 748ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 763ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 510ms
/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 149ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 163ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 180ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 158ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 149ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 152ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 185ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 167ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 173ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 156ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 155ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 781ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 43ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 801ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 287ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 610ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 878ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 855ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 624ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 355ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 283ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 246ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 283ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 269ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 256ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 227ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 231ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 283ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 268ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 254ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 186ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 527ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 748ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 8ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 239ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 487ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 987ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 766ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 484ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 238ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 183ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 167ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 157ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 125ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 111ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 122ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 119ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 123ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 111ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 116ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 127ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 16s 176ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 902ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 892ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 125ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 365ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 677ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 812ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 773ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 569ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 311ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 255ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 271ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 252ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 240ms
/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 244ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 216ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 227ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 231ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 215ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 178ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 782ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 806ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 77ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 341ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 671ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 917ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 857ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 587ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 339ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 345ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 295ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 270ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 286ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 311ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 307ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 303ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 301ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 251ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 261ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 199ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 614ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 871ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 109ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 361ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 673ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 93ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 836ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 602ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 321ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 193ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 193ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 164ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 166ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 174ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 180ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 161ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 160ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 167ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 156ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 122ms
/iceberg/icebergS3 table function/glue catalog OK 1m 2s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 28s 789ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 835ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 868ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 1s 860ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 23s 222ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 33s 389ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 15s 794ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 818ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 806ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 22ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 267ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 544ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 765ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 709ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 529ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 292ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 147ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 198ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 189ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 174ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 160ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 155ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 161ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 162ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 160ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 158ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 150ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 281ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 807ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 46ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 786ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 634ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 854ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 803ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 568ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 353ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 248ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 253ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 252ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 239ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 248ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 211ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 250ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 245ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 242ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 222ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 175ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 503ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 746ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 965ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 198ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 424ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 956ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 725ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 490ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 257ms
/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 148ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 147ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 149ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 151ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 117ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 135ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 131ms
/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 127ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 109ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 17s 593ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 839ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 827ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 45ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 287ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 617ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 815ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 802ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 571ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 314ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 240ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 206ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 234ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 219ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 229ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 197ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 234ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 235ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 228ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 224ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 173ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 800ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 803ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 51ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 304ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 646ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 807ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 867ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 599ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 332ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 196ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 251ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 254ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 256ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 255ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 202ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 304ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 292ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 293ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 285ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 243ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 775ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 739ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 977ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 517ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 230ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 9ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 776ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 563ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 285ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 196ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 186ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 163ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 182ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 151ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 166ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 196ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 175ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 175ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 173ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 122ms
/iceberg/iceberg cache OK 4ms
/iceberg/iceberg cache/rest catalog Skip 1ms
/iceberg/iceberg cache/glue catalog Skip 1ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922