Iceberg Test Run Report

DateApr 10, 2026 19:26
Duration1h 1m
Framework TestFlows 2.0.250110.1002922

Artifacts

Test artifacts can be found at https://altinity-build-artifacts.s3.amazonaws.com/index.html#REFs/v25.3.8.30001.altinityfips/0ec342e4405683c138a412d0191897013d6867cd/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
packagehttps://s3.amazonaws.com/altinity-build-artifacts/25.3/0ec342e4405683c138a412d0191897013d6867cd/package_aarch64/clickhouse-common-static_25.3.8.30001.altinityfips_arm64.deb
version25.3.8.30001.altinityfips
user.nameMyroTk
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hashe1f4e6ae0d862388e113cbc74b8dab32b9db64fc
job.nameiceberg_1
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/24254516463
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://s3.amazonaws.com/altinity-build-artifacts/25.3/0ec342e4405683c138a412d0191897013d6867cd/package_aarch64/clickhouse-common-static_25.3.8.30001.altinityfips_arm64.deb
as_binaryFalse
base_osNone
keeper_pathNone
zookeeper_versionNone
use_keeperFalse
stressFalse
collect_service_logsTrue
thread_fuzzerFalse
with_analyzerTrue
reuse_envFalse
cicdFalse
minio_uriSecret(name='minio_uri')
minio_root_userSecret(name='minio_root_user')
minio_root_passwordSecret(name='minio_root_password')

Summary

97.2%OK
<1%Known

Statistics

Units Skip OK Fail XFail
Modules
1
1
Features
33
4
29
Scenarios
482
11
469
2
Checks
100
100
Steps
53201
53192
4
5

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal columnXFail 3s 116ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 373, 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 347, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 20, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 553, in feature
    Scenario(test=issue_with_decimal_column)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 459, in issue_with_decimal_column
    check_read_with_predicate_push_down(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 69, in check_read_with_predicate_push_down
    assert int(read_rows.output.strip()) == 0, error(
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

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

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

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

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

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

61\|              input_format_parquet_bloom_filter_push_down="0"
62\|          )
63\|          assert result.output.strip() == "", error()
64\|  
65\|      with And(f"check that 0 rows were read"):
66\|          read_rows = metrics.get_read_rows(
67\|              log_comment=log_comment_with_pruning,
68\|          )
69\|>         assert int(read_rows.output.strip()) == 0, error(
70\|              f"Expected 0 rows to be read, with where clause: {where_clause}, but got {read_rows.output.strip()}"
71\|          )
72\|
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float columnXFail 1s 964ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 373, 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 347, 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 1m
/iceberg/iceberg engine OK 58m 3s
/iceberg/iceberg engine/rest catalog OK 58m 3s
/iceberg/iceberg engine/rest catalog/feature OK 40s 888ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 4s 137ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 12s 973ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 2s 38ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 190ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 3s 867ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 463ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 460ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 598ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 677ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 3s 946ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 1s 937ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 831ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 1s 758ms
/iceberg/iceberg engine/rest catalog/feature OK 11s 37ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 1s 957ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 553ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 3s 24ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 479ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 510ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 1s 507ms
/iceberg/iceberg engine/rest catalog/column rbac OK 6m 45s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 3s 734ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 3s 877ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 3s 605ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 4s 59ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 3s 867ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 3s 907ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 4s 182ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 4s 27ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 3s 967ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 4s 615ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 4s 316ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 4s 263ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 3s 820ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 3s 886ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 3s 823ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 4s 989ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 4s 270ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 3s 959ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 3s 610ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 3s 679ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 3s 860ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 3s 623ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 3s 780ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 3s 576ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 3s 918ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 3s 669ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 3s 818ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 3s 687ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 3s 819ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 4s 14ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 3s 836ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 3s 785ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 3s 692ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 4s 197ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 3s 851ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 3s 850ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 3s 903ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 4s 36ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 3s 872ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 3s 852ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 4s 107ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 3s 983ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 4s 795ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 4s 175ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 3s 892ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 4s 405ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 3s 776ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 4s 174ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 3s 708ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 3s 882ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 3s 814ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 4s 478ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 3s 814ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 4s 156ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 3s 731ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 3s 793ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 3s 773ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 4s 16ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 4s 269ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 3s 843ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 4s 277ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 3s 889ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 3s 862ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 3s 844ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 3s 901ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 3s 899ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 3s 746ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 4s 678ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 4s 292ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 3s 946ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 3s 855ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 4s 261ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 4s 131ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 3s 973ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 3s 879ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 4s 126ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 4s 615ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 3s 886ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 5s 325ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 4s 52ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 3s 966ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 3s 886ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 3s 937ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 4s 12ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 3s 934ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 4s 162ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 3s 804ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 4s 85ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 3s 633ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 3s 823ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 4s 147ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 5s 119ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 4s 151ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 3s 652ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 3s 902ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 3s 933ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 3s 931ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 5s 371ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 4s 43ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 4s 487ms
/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 3s 116ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 1s 964ms
/iceberg/iceberg engine/rest catalog/feature OK 6s 292ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 2s 108ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 2s 213ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 1s 968ms
/iceberg/iceberg engine/rest catalog/feature OK 1m 7s
/iceberg/iceberg engine/rest catalog/feature/row policies OK 1m 7s
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 551ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 638ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 639ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 536ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 626ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 672ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 686ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 609ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 708ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 685ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 688ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 535ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 574ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 510ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 543ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 567ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 576ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 677ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 683ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 571ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 636ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 615ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 641ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 729ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 726ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 562ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 694ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 675ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 626ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 710ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 713ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 600ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 546ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 689ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 686ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 545ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 691ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 625ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 699ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 568ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 551ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 629ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 555ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 693ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 659ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 714ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 665ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 637ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 715ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 647ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 546ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 709ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 606ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 671ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 633ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 610ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 672ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 691ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 685ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 547ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 718ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 664ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 692ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 568ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 671ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 666ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 664ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 662ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 639ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 649ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 741ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 599ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 753ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 636ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 742ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 702ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 615ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 611ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 539ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 681ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 737ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 682ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 547ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 656ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 647ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 634ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 542ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 671ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 680ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 711ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 641ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 550ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 623ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 714ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 540ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 703ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 669ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 595ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 644ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 651ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 4s 272ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 519ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 89ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 120ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 124ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 252ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 128ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 686ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 590ms
/iceberg/iceberg engine/rest catalog/feature OK 20m 40s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 20m 40s
/iceberg/iceberg engine/rest catalog/feature OK 4s 367ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 2s 229ms
/iceberg/iceberg engine/rest catalog/feature/append OK 2s 136ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 15m 19s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 9s 103ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 9s 254ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 9s 696ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 8s 708ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 8s 815ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 9s 147ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 8s 376ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 8s 856ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 8s 991ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 8s 497ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 8s 875ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 9s 338ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 9s 411ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 9s 280ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 9s 243ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 8s 530ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 9s 299ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 9s 363ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 9s 810ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 9s 452ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 9s 920ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 9s 67ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 9s 357ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 9s 434ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 9s 132ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 9s 478ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 8s 520ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 9s 736ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 9s 130ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 9s 580ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 9s 243ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 9s 906ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 9s 735ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 9s 108ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 8s 962ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 8s 770ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 9s 368ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 8s 888ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 8s 747ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 9s 351ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 8s 590ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 9s 224ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 8s 964ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 9s 190ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 9s 368ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 9s 42ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 8s 894ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 9s 65ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 10s 670ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 8s 630ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 9s 137ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 9s 570ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 9s 189ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 9s 210ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 8s 945ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 9s 614ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 9s 478ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 9s 713ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 9s 103ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 9s 986ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 9s 848ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 9s 289ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 8s 603ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 8s 859ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 9s 113ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 9s 962ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 8s 530ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 8s 147ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 9s 286ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 8s 374ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 9s 436ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 9s 110ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 9s 986ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 9s 536ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 9s 264ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 9s 623ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 8s 871ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 8s 873ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 9s 548ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 9s 369ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 9s 377ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 9s 383ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 9s 722ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 9s 135ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 9s 679ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 8s 851ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 8s 897ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 9s 25ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 8s 824ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 9s 41ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 9s 141ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 9s 507ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 9s 9ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 9s 313ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 8s 789ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 9s 279ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 9s 557ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 8s 778ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 8s 709ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 9s 8ms
/iceberg/iceberg engine/rest catalog/swarm OK 2s 51ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 50ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 1m 47s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 1s 892ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 293ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 2s 747ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 2s 854ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 3s 226ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 3s 543ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 3s 683ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 4s 191ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 4s 844ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 5s 299ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 5s 72ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 5s 592ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 6s 414ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 6s 637ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 7s 8ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 7s 742ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 7s 948ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 8s 272ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 8s 619ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 9s 334ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 8m 44s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 5s 30ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 5s 311ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 5s 138ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 5s 337ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 5s 224ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 5s 215ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 5s 280ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 5s 656ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 5s 500ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 5s 339ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 5s 162ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 5s 202ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 5s 161ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 5s 300ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 5s 163ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 5s 225ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 5s 360ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 5s 469ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 5s 405ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 5s 546ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 5s 340ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 5s 355ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 5s 310ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 5s 491ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 5s 351ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 5s 116ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 5s 152ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 5s 273ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 5s 300ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 5s 128ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 5s 502ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 5s 232ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 5s 426ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 5s 139ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 5s 193ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 5s 336ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 5s 26ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 5s 262ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 5s 302ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 5s 180ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 5s 422ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 5s 499ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 5s 326ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 4s 952ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 4s 881ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 5s 135ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 5s 104ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 5s 71ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 4s 957ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 5s 292ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 5s 223ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 5s 45ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 5s 211ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 5s 282ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 5s 31ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 5s 69ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 5s 370ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 4s 971ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 5s 423ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 5s 393ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 5s 280ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 5s 239ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 5s 304ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 313ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 5s 533ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 5s 716ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 5s 434ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 5s 454ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 5s 374ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 5s 369ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 5s 337ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 5s 181ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 4s 915ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 5s 349ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 5s 252ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 5s 295ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 5s 569ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 5s 27ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 5s 252ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 5s 224ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 5s 168ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 5s 386ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 5s 307ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 5s 217ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 5s 335ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 5s 189ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 5s 239ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 5s 358ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 5s 487ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 5s 325ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 5s 134ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 4s 989ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 5s 60ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 4s 679ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 4s 825ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 4s 958ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 5s 133ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 5s 14ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 4s 967ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 5s 232ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 1m 8s
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type OK 52s 149ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause OK 5s 188ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type OK 3s 925ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 7s 365ms
/iceberg/iceberg engine/rest catalog/datatypes OK 13s 492ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 13s 491ms
/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 2ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names Skip 934us
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns Skip 939us
/iceberg/iceberg engine/rest catalog/sort key timezone OK 9ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and utc timezone Skip 1ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with hour transform and utc timezone Skip 910us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with month transform and utc timezone Skip 912us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with year transform and utc timezone Skip 867us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and positive utc offset timezone Skip 1ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and negative utc offset timezone Skip 892us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and timestamptz type Skip 876us
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint OK 2ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint/similar table names hint Skip 1ms
/iceberg/s3 table function OK 1s 704ms
/iceberg/s3 table function/s3 table function OK 1s 703ms
/iceberg/icebergS3 table function OK 35s 341ms
/iceberg/icebergS3 table function/rest catalog OK 28s 276ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 28s 264ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 1s 773ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 799ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 22s 887ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 1s 801ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir Skip 1ms
/iceberg/icebergS3 table function/glue catalog OK 7s 63ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 7s 61ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 722ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 755ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 1s 794ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 1s 786ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir Skip 1ms
/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