Iceberg Test Run Report

DateSep 08, 2026 21:05
Duration1h 7m
Framework TestFlows 2.0.250110.1002922

Artifacts

Test artifacts can be found at https://altinity-build-artifacts.s3.amazonaws.com/index.html#REFs/antalya-26.6/b3c747bb0358bd959c0f7b53431e2238e2f55f26/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
user.nameCarlosFelipeOR
version26.6.2.20001.altinityantalya
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-26.6/b3c747bb0358bd959c0f7b53431e2238e2f55f26/build_arm_release/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hashca939a019ab56c0f0648141b10f597faa825fc5d
job.nameiceberg_1
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/34278156909
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/antalya-26.6/b3c747bb0358bd959c0f7b53431e2238e2f55f26/build_arm_release/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%OK
1%Known

Statistics

Units OK Fail XFail
Modules
1
1
Features
44
44
Scenarios
493
484
9
Checks
340
340
Steps
55814
55736
16
62

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal columnXFail 2s 31ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 716, 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 988ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 716, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 20, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 556, in feature
    Scenario(test=issue_with_float_column)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 529, in issue_with_float_column
    check_read_with_predicate_push_down(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/predicate_push_down.py", line 69, in check_read_with_predicate_push_down
    assert int(read_rows.output.strip()) == 0, error(
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

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

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

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

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

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

61\|              input_format_parquet_bloom_filter_push_down="0",
62\|          )
63\|          assert result.output.strip() == "", error()
64\|  
65\|      with And(f"check that 0 rows were read"):
66\|          read_rows = metrics.get_read_rows(
67\|              log_comment=log_comment_with_pruning,
68\|          )
69\|>         assert int(read_rows.output.strip()) == 0, error(
70\|              f"Expected 0 rows to be read, with where clause: {where_clause}, but got {read_rows.output.strip()}"
71\|          )
72\|
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer typeXFail 3s 463ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 716, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 56, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py", line 717, in feature
    Scenario(test=check_iceberg_partition_pruning_with_integer_type)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py", line 161, in check_iceberg_partition_pruning_with_integer_type
    assert int(s3_read_requests_count) <= max_count, error()
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert int(s3_read_requests_count) <= max_count, error()

Assertion values
  assert int(s3_read_requests_count) <= max_count, error()
             ^ is '74'
  assert int(s3_read_requests_count) <= max_count, error()
         ^ is = 74
  assert int(s3_read_requests_count) <= max_count, error()
                                        ^ is 53
  assert int(s3_read_requests_count) <= max_count, error()
                                     ^ is = False
  assert int(s3_read_requests_count) <= max_count, error()
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py', line 161 in 'check_iceberg_partition_pruning_with_integer_type'

153\|                  # 2 requests for each row: one for metadata and one for data
154\|                  # 3-5 requests for metadata files
155\|                  s3_read_requests_count = metrics.get_S3ReadRequestsCount(
156\|                      log_comment=log_comment_with_partition_pruning,
157\|                  ).output.strip()
158\|                  min_count = 2 * (length - i) + 3
159\|                  max_count = 2 * (length - i) + 13
160\|                  assert min_count <= int(s3_read_requests_count), error()
161\|>                 assert int(s3_read_requests_count) <= max_count, error()
162\|  
163\|      with And("read data from ClickHouse with partition pruning disabled"):
164\|          for i in range(length):
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clauseXFail 3s 657ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 716, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 56, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py", line 720, in feature
    Scenario(test=check_partition_pruning_with_complex_where_clause)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py", line 367, in check_partition_pruning_with_complex_where_clause
    assert int(s3_read_requests_count) <= 22, error()
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert int(s3_read_requests_count) <= 22, error()

Assertion values
  assert int(s3_read_requests_count) <= 22, error()
             ^ is '26'
  assert int(s3_read_requests_count) <= 22, error()
         ^ is = 26
  assert int(s3_read_requests_count) <= 22, error()
                                     ^ is = False
  assert int(s3_read_requests_count) <= 22, error()
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py', line 367 in 'check_partition_pruning_with_complex_where_clause'

359\|              assert int(min_max_pruned_files) == 43, error()
360\|  
361\|      with And("check that S3ReadRequestsCount is correct"):
362\|          s3_read_requests_count = metrics.get_S3ReadRequestsCount(
363\|              log_comment=log_comment_with_partition_pruning,
364\|          ).output.strip()
365\|          if check_clickhouse_version(">=25.4")(self) or check_if_antalya_build(self):
366\|              assert 10 <= int(s3_read_requests_count), error()
367\|>             assert int(s3_read_requests_count) <= 22, error()
368\|          else:
369\|              assert 95 <= int(s3_read_requests_count), error()
370\|              assert int(s3_read_requests_count) <= 100, error()
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date typeXFail 3s 469ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 716, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 56, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py", line 723, in feature
    Scenario(test=partition_pruning_with_date_type)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py", line 512, in partition_pruning_with_date_type
    assert int(s3_read_requests_count) <= 150, error()
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert int(s3_read_requests_count) <= 150, error()

Assertion values
  assert int(s3_read_requests_count) <= 150, error()
             ^ is '215'
  assert int(s3_read_requests_count) <= 150, error()
         ^ is = 215
  assert int(s3_read_requests_count) <= 150, error()
                                     ^ is = False
  assert int(s3_read_requests_count) <= 150, error()
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py', line 512 in 'partition_pruning_with_date_type'

504\|              assert int(min_max_pruned_files) == 0, error()
505\|  
506\|      with And("check that S3ReadRequestsCount is correct"):
507\|          s3_read_requests_count = metrics.get_S3ReadRequestsCount(
508\|              log_comment=log_comment_with_partition_pruning,
509\|          ).output.strip()
510\|          if check_clickhouse_version(">=25.3")(self) or check_if_antalya_build(self):
511\|              assert 137 <= int(s3_read_requests_count), error()
512\|>             assert int(s3_read_requests_count) <= 150, error()
513\|          else:
514\|              assert 200 <= int(s3_read_requests_count), error()
515\|              assert int(s3_read_requests_count) <= 210, error()
/iceberg/iceberg cache/rest catalog/iceberg database engine/cacheXFail 2s 649ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 732, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 10, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 118, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 88, in cache
    _, cold_run_time = run_query_with_timing(
                       ^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 61, in run_query_with_timing
    result = iceberg_engine.read_data_from_clickhouse_iceberg_table(
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/steps/iceberg_engine.py", line 353, in read_data_from_clickhouse_iceberg_table
    result = node.query(
             ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py", line 1289, in query
    assert False, error(r.output)
           ^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert False, error(r.output)

Description
  Code: 552. DB::Exception: Unrecognized option '--input_format_parquet_use_metadata_cache'. Maybe you meant ['--input_format_parquet_use_offset_index','--output_format_parquet_geometadata']. (UNRECOGNIZED_ARGUMENTS)

Assertion values
  assert False, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py', line 1289 in 'query'

1281\|                  assert message in r.output, error(r.output)
1282\|  
1283\|          if not ignore_exception:
1284\|              if message is None or "Exception:" not in message:
1285\|                  with Then("check if output has exception") if steps else NullStep():
1286\|                      if "Exception:" in r.output:
1287\|                          if raise_on_exception:
1288\|                              raise QueryRuntimeException(r.output)
1289\|>                         assert False, error(r.output)
1290\|  
1291\|          return r
1292\|
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cacheXFail 11s 888ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 732, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 16, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 80, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 44, in cache
    icebergS3.read_parquet_data_with_icebergS3_table_function(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/steps/icebergS3.py", line 315, in read_parquet_data_with_icebergS3_table_function
    node.query(query)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py", line 1289, in query
    assert False, error(r.output)
           ^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert False, error(r.output)

Description
  Received exception from server (version 26.6.2):
Code: 115. DB::Exception: Received from localhost:9000. DB::Exception: Unknown setting 'input_format_parquet_use_metadata_cache': Maybe you meant ['input_format_parquet_use_offset_index','output_format_parquet_geometadata']. (UNKNOWN_SETTING)
(query: SELECT * FROM icebergS3('http://minio:9000/warehouse/data/', '[masked]:Secret(name='minio_root_user')', '[masked]:Secret(name='minio_root_password')', Parquet) WHERE date_col > '2030-01-01' SETTINGS optimize_count_from_files=0, remote_filesystem_read_prefetch=0, log_comment='log_4842d918_abd2_11f1_a3d1_920009ae1d92', use_hive_partitioning=1, input_format_parquet_use_metadata_cache=1,input_format_parquet_filter_push_down=1
)

Assertion values
  assert False, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py', line 1289 in 'query'

1281\|                  assert message in r.output, error(r.output)
1282\|  
1283\|          if not ignore_exception:
1284\|              if message is None or "Exception:" not in message:
1285\|                  with Then("check if output has exception") if steps else NullStep():
1286\|                      if "Exception:" in r.output:
1287\|                          if raise_on_exception:
1288\|                              raise QueryRuntimeException(r.output)
1289\|>                         assert False, error(r.output)
1290\|  
1291\|          return r
1292\|
/iceberg/iceberg cache/glue catalog/iceberg database engine/cacheXFail 2s 745ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 732, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 22, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 118, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 88, in cache
    _, cold_run_time = run_query_with_timing(
                       ^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/iceberg_database_engine.py", line 61, in run_query_with_timing
    result = iceberg_engine.read_data_from_clickhouse_iceberg_table(
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/steps/iceberg_engine.py", line 353, in read_data_from_clickhouse_iceberg_table
    result = node.query(
             ^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py", line 1289, in query
    assert False, error(r.output)
           ^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert False, error(r.output)

Description
  Code: 552. DB::Exception: Unrecognized option '--input_format_parquet_use_metadata_cache'. Maybe you meant ['--input_format_parquet_use_offset_index','--output_format_parquet_geometadata']. (UNRECOGNIZED_ARGUMENTS)

Assertion values
  assert False, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py', line 1289 in 'query'

1281\|                  assert message in r.output, error(r.output)
1282\|  
1283\|          if not ignore_exception:
1284\|              if message is None or "Exception:" not in message:
1285\|                  with Then("check if output has exception") if steps else NullStep():
1286\|                      if "Exception:" in r.output:
1287\|                          if raise_on_exception:
1288\|                              raise QueryRuntimeException(r.output)
1289\|>                         assert False, error(r.output)
1290\|  
1291\|          return r
1292\|
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cacheXFail 12s 455ms
https://github.com/Altinity/ClickHouse/issues/1277
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 754, in 
    regression()
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 180, in capture_cluster_args
    return func(self, cluster_args=cluster_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/argparser.py", line 451, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 732, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/feature.py", line 28, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 80, in feature
    Scenario(test=cache)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/cache/icebergS3_table_function.py", line 44, in cache
    icebergS3.read_parquet_data_with_icebergS3_table_function(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/steps/icebergS3.py", line 315, in read_parquet_data_with_icebergS3_table_function
    node.query(query)
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py", line 1289, in query
    assert False, error(r.output)
           ^^^^^
AssertionError: Oops! Assertion failed

The following assertion was not satisfied
  assert False, error(r.output)

Description
  Received exception from server (version 26.6.2):
Code: 115. DB::Exception: Received from localhost:9000. DB::Exception: Unknown setting 'input_format_parquet_use_metadata_cache': Maybe you meant ['input_format_parquet_use_offset_index','output_format_parquet_geometadata']. (UNKNOWN_SETTING)
(query: SELECT * FROM icebergS3('http://minio:9000/warehouse/data/', '[masked]:Secret(name='minio_root_user')', '[masked]:Secret(name='minio_root_password')', Parquet) WHERE date_col > '2030-01-01' SETTINGS optimize_count_from_files=0, remote_filesystem_read_prefetch=0, log_comment='log_531325a1_abd2_11f1_b9dc_920009ae1d92', use_hive_partitioning=1, input_format_parquet_use_metadata_cache=1,input_format_parquet_filter_push_down=1
)

Assertion values
  assert False, error(r.output)
  ^ is False

Where
  File '/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../helpers/cluster.py', line 1289 in 'query'

1281\|                  assert message in r.output, error(r.output)
1282\|  
1283\|          if not ignore_exception:
1284\|              if message is None or "Exception:" not in message:
1285\|                  with Then("check if output has exception") if steps else NullStep():
1286\|                      if "Exception:" in r.output:
1287\|                          if raise_on_exception:
1288\|                              raise QueryRuntimeException(r.output)
1289\|>                         assert False, error(r.output)
1290\|  
1291\|          return r
1292\|

Results

Test Name Result Duration
/iceberg OK 1h 7m
/iceberg/iceberg engine OK 1h 1m
/iceberg/iceberg engine/rest catalog OK 1h 1m
/iceberg/iceberg engine/rest catalog/feature OK 39s 335ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 4s 388ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 12s 398ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 1s 999ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 212ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 3s 677ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 370ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 376ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 527ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 560ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 1s 839ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 1s 874ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 711ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 1s 672ms
/iceberg/iceberg engine/rest catalog/feature/select from system databases OK 1s 717ms
/iceberg/iceberg engine/rest catalog/feature OK 10s 728ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 2s 48ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 509ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 3s 6ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 373ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 387ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 1s 400ms
/iceberg/iceberg engine/rest catalog/column rbac OK 6m 55s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 4s 54ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 4s 51ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 3s 891ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 4s 137ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 4s 60ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 3s 927ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 4s 220ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 4s 6ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 4s 81ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 4s 515ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 4s 254ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 4s 97ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 3s 962ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 4s 102ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 3s 986ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 5s 10ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 4s 408ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 4s 130ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 3s 879ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 3s 893ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 4s 127ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 3s 997ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 4s 29ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 3s 862ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 4s 133ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 3s 865ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 4s 79ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 3s 996ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 4s 89ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 4s 255ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 4s 48ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 4s 87ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 3s 985ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 4s 300ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 4s 18ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 3s 939ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 3s 933ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 4s 59ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 3s 988ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 3s 883ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 4s 206ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 3s 903ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 4s 540ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 4s 117ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 3s 928ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 4s 376ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 3s 950ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 4s 388ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 3s 829ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 4s 20ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 4s 15ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 4s 574ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 3s 912ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 4s 162ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 3s 850ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 3s 838ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 3s 861ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 4s 90ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 4s 241ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 4s 4ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 4s 415ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 4s 54ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 3s 920ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 4s 62ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 4s 24ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 3s 981ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 3s 927ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 4s 606ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 4s 220ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 3s 979ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 3s 884ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 4s 85ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 4s 76ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 3s 937ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 3s 880ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 4s 143ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 4s 523ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 3s 844ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 5s 92ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 4s 33ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 3s 968ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 3s 976ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 4s 29ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 4s 257ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 4s 65ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 4s 257ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 3s 957ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 4s 317ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 3s 823ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 4s 15ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 4s 284ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 5s 6ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 4s 290ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 3s 940ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 4s 213ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 4s 112ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 4s 35ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 4s 956ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 3s 882ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 4s 350ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 46s 584ms
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 42s 562ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 2s 31ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 1s 988ms
/iceberg/iceberg engine/rest catalog/rbac OK 6s 238ms
/iceberg/iceberg engine/rest catalog/rbac/select privilege OK 2s 53ms
/iceberg/iceberg engine/rest catalog/rbac/drop table privilege OK 2s 176ms
/iceberg/iceberg engine/rest catalog/rbac/drop database privilege OK 2s 5ms
/iceberg/iceberg engine/rest catalog/row policy OK 1m 5s
/iceberg/iceberg engine/rest catalog/row policy/row policies OK 1m 5s
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #0 OK 615ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #1 OK 680ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #2 OK 600ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #3 OK 565ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #4 OK 649ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #5 OK 667ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #6 OK 632ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #7 OK 609ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #8 OK 673ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #9 OK 649ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #10 OK 657ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #11 OK 605ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #12 OK 611ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #13 OK 529ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #14 OK 536ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #15 OK 537ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #16 OK 600ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #17 OK 678ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #18 OK 666ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #19 OK 586ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #20 OK 588ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #21 OK 607ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #22 OK 595ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #23 OK 646ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #24 OK 657ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #25 OK 552ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #26 OK 677ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #27 OK 646ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #28 OK 591ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #29 OK 677ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #30 OK 678ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #31 OK 604ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #32 OK 597ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #33 OK 639ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #34 OK 665ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #35 OK 549ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #36 OK 613ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #37 OK 605ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #38 OK 667ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #39 OK 543ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #40 OK 562ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #41 OK 620ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #42 OK 555ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #43 OK 663ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #44 OK 616ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #45 OK 643ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #46 OK 651ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #47 OK 604ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #48 OK 658ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #49 OK 602ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #50 OK 528ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #51 OK 664ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #52 OK 630ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #53 OK 675ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #54 OK 615ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #55 OK 591ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #56 OK 701ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #57 OK 687ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #58 OK 668ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #59 OK 581ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #60 OK 650ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #61 OK 695ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #62 OK 666ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #63 OK 551ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #64 OK 661ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #65 OK 599ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #66 OK 593ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #67 OK 657ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #68 OK 605ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #69 OK 598ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #70 OK 643ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #71 OK 552ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #72 OK 694ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #73 OK 598ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #74 OK 655ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #75 OK 611ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #76 OK 610ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #77 OK 608ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #78 OK 572ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #79 OK 647ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #80 OK 678ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #81 OK 623ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #82 OK 542ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #83 OK 584ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #84 OK 664ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #85 OK 626ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #86 OK 549ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #87 OK 658ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #88 OK 638ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #89 OK 678ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #90 OK 579ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #91 OK 536ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #92 OK 598ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #93 OK 642ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #94 OK 562ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #95 OK 612ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #96 OK 667ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #97 OK 601ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #98 OK 592ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #99 OK 611ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 3s 864ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 449ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 103ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 111ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 103ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 214ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 101ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 663ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 542ms
/iceberg/iceberg engine/rest catalog/equality delete reads OK 20m 28s
/iceberg/iceberg engine/rest catalog/equality delete reads/run equality deletes combinations OK 20m 28s
/iceberg/iceberg engine/rest catalog/position delete reads OK 3s 37ms
/iceberg/iceberg engine/rest catalog/position delete reads/read position deletes OK 3s 35ms
/iceberg/iceberg engine/rest catalog/overwrite OK 4s 344ms
/iceberg/iceberg engine/rest catalog/overwrite/overwrite OK 2s 227ms
/iceberg/iceberg engine/rest catalog/overwrite/append OK 2s 115ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 15m 16s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 9s 98ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 9s 215ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 9s 286ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 9s 16ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 9s 25ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 9s 222ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 9s 68ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 9s 135ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 9s 314ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 9s 12ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 9s 110ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 9s 525ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 9s 478ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 9s 610ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 9s 276ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 8s 869ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 9s 80ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 9s 171ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 9s 340ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 8s 966ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 9s 386ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 8s 999ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 9s 196ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 9s 315ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 9s 160ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 9s 189ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 8s 794ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 9s 279ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 9s 164ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 9s 235ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 9s 0ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 9s 173ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 9s 219ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 9s 121ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 9s 111ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 9s 315ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 9s 574ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 9s 494ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 9s 361ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 9s 528ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 9s 302ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 9s 531ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 9s 397ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 9s 215ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 9s 524ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 9s 49ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 8s 881ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 8s 960ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 9s 238ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 8s 965ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 9s 300ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 9s 378ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 9s 244ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 9s 54ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 9s 141ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 9s 204ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 9s 244ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 9s 51ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 9s 197ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 9s 217ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 9s 144ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 9s 23ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 9s 142ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 8s 860ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 9s 177ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 9s 178ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 8s 906ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 8s 597ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 9s 131ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 8s 789ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 9s 230ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 9s 189ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 9s 725ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 9s 342ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 9s 213ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 9s 365ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 8s 941ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 8s 764ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 9s 417ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 9s 288ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 9s 199ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 9s 129ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 9s 437ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 8s 778ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 9s 191ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 9s 73ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 8s 996ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 8s 967ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 8s 907ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 9s 9ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 9s 80ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 9s 272ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 8s 948ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 9s 37ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 8s 870ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 9s 71ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 9s 112ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 8s 938ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 9s 19ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 9s 134ms
/iceberg/iceberg engine/rest catalog/swarm OK 2s 663ms
/iceberg/iceberg engine/rest catalog/swarm/feature support validation OK 485us
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 571ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 1m 58s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 2s 34ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 752ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 2s 812ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 3s 186ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 3s 596ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 4s 54ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 4s 317ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 4s 955ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 5s 410ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 5s 612ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 6s 45ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 6s 335ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 6s 736ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 6s 892ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 7s 532ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 8s 272ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 8s 633ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 9s 333ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 9s 514ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 10s 842ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 8m 53s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 5s 170ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 5s 372ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 5s 319ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 5s 173ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 5s 215ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 5s 236ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 5s 548ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 5s 593ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 5s 304ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 5s 314ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 5s 344ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 5s 192ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 5s 175ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 5s 320ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 5s 205ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 5s 178ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 5s 276ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 5s 348ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 5s 353ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 5s 290ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 5s 257ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 5s 132ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 5s 331ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 5s 376ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 5s 173ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 5s 181ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 5s 221ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 5s 305ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 5s 139ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 5s 260ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 5s 245ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 5s 400ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 5s 298ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 5s 266ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 5s 298ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 5s 256ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 5s 60ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 5s 416ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 5s 450ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 5s 125ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 5s 411ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 5s 347ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 5s 216ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 5s 229ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 5s 219ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 5s 490ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 5s 221ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 5s 292ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 5s 95ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 5s 174ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 5s 367ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 5s 115ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 5s 753ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 5s 278ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 5s 239ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 5s 451ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 5s 319ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 5s 193ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 5s 709ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 5s 402ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 5s 314ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 5s 304ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 5s 325ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 463ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 5s 370ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 5s 458ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 5s 406ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 5s 271ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 5s 429ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 5s 436ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 5s 481ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 5s 242ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 5s 372ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 5s 512ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 5s 422ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 5s 582ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 5s 309ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 5s 498ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 5s 213ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 5s 337ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 5s 280ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 5s 376ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 5s 343ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 5s 247ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 5s 339ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 5s 451ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 5s 690ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 5s 391ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 5s 493ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 5s 495ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 5s 491ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 5s 302ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 5s 365ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 5s 90ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 5s 353ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 5s 367ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 5s 683ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 5s 446ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 5s 364ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 5s 286ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 18s 818ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type XFail 3s 463ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause XFail 3s 657ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type XFail 3s 469ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 8s 226ms
/iceberg/iceberg engine/rest catalog/datatypes OK 12s 458ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 12s 457ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 4m 7s
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/feature support validation OK 410us
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition OK 4m 7s
/iceberg/iceberg engine/rest catalog/dot separated column names OK 3s 741ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 1s 612ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 2s 127ms
/iceberg/iceberg engine/rest catalog/sort key timezone OK 12s 292ms
/iceberg/iceberg engine/rest catalog/sort key timezone/feature support validation OK 688us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and utc timezone OK 1s 859ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with hour transform and utc timezone OK 1s 760ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with month transform and utc timezone OK 1s 707ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with year transform and utc timezone OK 1s 715ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and positive utc offset timezone OK 1s 718ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and negative utc offset timezone OK 1s 747ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and timestamptz type OK 1s 683ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint OK 3s 810ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint/similar table names hint OK 3s 809ms
/iceberg/s3 table function OK 1s 545ms
/iceberg/s3 table function/s3 table function OK 1s 544ms
/iceberg/icebergS3 table function OK 2m 16s
/iceberg/icebergS3 table function/rest catalog OK 1m 12s
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 28s 224ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 1s 645ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 726ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 1s 809ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 23s 41ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 44s 705ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 18s 385ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 764ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 940ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 153ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 374ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 583ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 851ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 646ms
/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 498ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 475ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 477ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 473ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 517ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 519ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 856ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 873ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 815ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 866ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 843ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 624ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 886ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 339ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 570ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 21ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 880ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 267ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 941ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 837ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 798ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 872ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 861ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 1s 78ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 860ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 894ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 660ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 656ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 862ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 944ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 878ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 985ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 463ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 673ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 897ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 105ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 336ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 927ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 691ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 444ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 247ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 164ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 178ms
/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 169ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 171ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 148ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 145ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 144ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 134ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 145ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 124ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 26s 318ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 184ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 397ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 606ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 857ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 76ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 905ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 927ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 914ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 918ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 923ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 924ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 929ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 918ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 939ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 916ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 889ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 893ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 893ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 874ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 889ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 777ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 110ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 447ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 772ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 48ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 871ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 989ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 993ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 2s 11ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 2s 86ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 2s 108ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 2s 93ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 2s 51ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 1s 982ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 899ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 944ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 835ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 857ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 882ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 813ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 465ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 902ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 682ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 94ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 412ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 918ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 712ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 422ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 270ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 171ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 232ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 183ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 226ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 220ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 204ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 381ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 337ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 319ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 295ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 390ms
/iceberg/icebergS3 table function/glue catalog OK 1m 3s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 7s 289ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 714ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 831ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 1s 910ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 1s 830ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 56s 170ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 27s 749ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 1s 211ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 1s 344ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 576ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 797ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 999ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 880ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 891ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 850ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 853ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 845ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 904ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 841ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 872ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 877ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 869ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 900ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 880ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 852ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 828ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 816ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 915ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 270ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 587ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 932ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 178ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 999ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 842ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 947ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 1s 991ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 2s 12ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 1s 935ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 1s 958ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 1s 924ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 2s 43ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 970ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 868ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 2s 67ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 2s 48ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 892ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 786ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 488ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 680ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 895ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 102ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 316ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 869ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 687ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 464ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 247ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 150ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 190ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 188ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 172ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 181ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 140ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 173ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 177ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 165ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 168ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 147ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 28s 419ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 187ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 358ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 563ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 809ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 0ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 869ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 905ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 901ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 889ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 873ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 876ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 931ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 855ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 844ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 877ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 1s 144ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 860ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 875ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 847ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 837ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 948ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 113ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 490ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 831ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 128ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 859ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 927ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 882ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 1s 929ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 1s 854ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 1s 960ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 2s 25ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 1s 982ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 1s 978ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 2s 43ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 898ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 966ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 893ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 818ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 767ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 467ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 672ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 876ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 53ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 319ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 909ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 648ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 464ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 320ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 180ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 230ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 211ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 193ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 223ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 177ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 211ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 198ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 198ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 206ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 171ms
/iceberg/iceberg cache OK 35s 445ms
/iceberg/iceberg cache/rest catalog OK 17s 337ms
/iceberg/iceberg cache/rest catalog/iceberg database engine OK 2s 650ms
/iceberg/iceberg cache/rest catalog/iceberg database engine/cache XFail 2s 649ms
/iceberg/iceberg cache/rest catalog/iceberg table engine OK 2s 657ms
/iceberg/iceberg cache/rest catalog/iceberg table engine/cache OK 2s 657ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function OK 11s 890ms
/iceberg/iceberg cache/rest catalog/icebergS3 table function/cache XFail 11s 888ms
/iceberg/iceberg cache/glue catalog OK 18s 107ms
/iceberg/iceberg cache/glue catalog/iceberg database engine OK 2s 746ms
/iceberg/iceberg cache/glue catalog/iceberg database engine/cache XFail 2s 745ms
/iceberg/iceberg cache/glue catalog/iceberg table engine OK 2s 900ms
/iceberg/iceberg cache/glue catalog/iceberg table engine/cache OK 2s 899ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function OK 12s 457ms
/iceberg/iceberg cache/glue catalog/icebergS3 table function/cache XFail 12s 455ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922