Iceberg Test Run Report

DateJun 30, 2026 23:03
Duration1h 14m
Framework TestFlows 2.0.250110.1002922

Artifacts

Test artifacts can be found at https://altinity-build-artifacts.s3.amazonaws.com/index.html#REFs/v26.3.16.10001.altinitystable/8de06fed91fa7a6545a72f37c98e81d4cc024bb1/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
user.namestrtgbb
version26.3.16.10001.altinitystable
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/v26.3.16.10001.altinitystable/8de06fed91fa7a6545a72f37c98e81d4cc024bb1/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash6cd9d2e8627aa513bd1c71610e41fe2dfff39bb0
job.nameiceberg_1
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/28467419577
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/v26.3.16.10001.altinitystable/8de06fed91fa7a6545a72f37c98e81d4cc024bb1/build_arm_binary/clickhouse
as_binaryFalse
base_osNone
keeper_pathNone
zookeeper_versionNone
use_keeperFalse
stressFalse
collect_service_logsTrue
thread_fuzzerFalse
with_analyzerTrue
reuse_envFalse
cicdTrue
minio_uriSecret(name='minio_uri')
minio_root_userSecret(name='minio_root_user')
minio_root_passwordSecret(name='minio_root_password')

Summary

98.1%OK
<1%Known

Statistics

Units Skip OK Fail XFail
Modules
1
1
Features
37
2
35
Scenarios
483
9
469
5
Checks
340
340
Steps
53422
53346
8
68

Known Fails

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

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

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

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

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

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

61\|              input_format_parquet_bloom_filter_push_down="0",
62\|          )
63\|          assert result.output.strip() == "", error()
64\|  
65\|      with And(f"check that 0 rows were read"):
66\|          read_rows = metrics.get_read_rows(
67\|              log_comment=log_comment_with_pruning,
68\|          )
69\|>         assert int(read_rows.output.strip()) == 0, error(
70\|              f"Expected 0 rows to be read, with where clause: {where_clause}, but got {read_rows.output.strip()}"
71\|          )
72\|
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float columnXFail 2s 241ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 530, 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 500, 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 6s 421ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 530, 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 500, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 53, 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 943ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 530, 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 500, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 53, 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 860ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 530, 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 500, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 53, 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()

Results

Test Name Result Duration
/iceberg OK 1h 14m
/iceberg/iceberg engine OK 1h 8m
/iceberg/iceberg engine/rest catalog OK 1h 8m
/iceberg/iceberg engine/rest catalog/feature OK 47s 626ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 4s 729ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 16s 42ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 2s 162ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 2s 227ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 4s 561ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 1s 610ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 1s 574ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 1s 718ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 1s 791ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 1s 992ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 3s 36ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 998ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 2s 45ms
/iceberg/iceberg engine/rest catalog/feature/select from system databases OK 2s 124ms
/iceberg/iceberg engine/rest catalog/feature OK 13s 63ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 2s 443ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 1s 825ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 3s 922ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 1s 624ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 1s 622ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 1s 621ms
/iceberg/iceberg engine/rest catalog/column rbac OK 9m 16s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 5s 442ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 5s 378ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 5s 139ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 5s 386ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 5s 367ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 5s 184ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 5s 763ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 5s 329ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 5s 322ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 5s 875ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 5s 742ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 5s 527ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 5s 552ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 5s 581ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 5s 165ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 6s 684ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 6s 181ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 5s 757ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 5s 70ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 5s 278ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 5s 533ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 5s 138ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 5s 508ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 4s 905ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 5s 317ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 5s 162ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 5s 771ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 5s 446ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 5s 402ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 5s 674ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 5s 459ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 5s 165ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 5s 93ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 5s 606ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 5s 418ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 5s 118ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 5s 307ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 5s 439ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 5s 469ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 5s 417ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 5s 371ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 5s 231ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 5s 980ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 5s 429ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 5s 54ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 5s 896ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 5s 22ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 6s 26ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 5s 410ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 5s 225ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 5s 232ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 6s 12ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 5s 120ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 5s 576ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 5s 28ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 4s 946ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 5s 113ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 5s 565ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 5s 805ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 5s 387ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 6s 111ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 5s 479ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 5s 211ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 5s 683ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 5s 216ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 5s 268ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 5s 487ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 6s 441ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 6s 161ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 5s 492ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 5s 328ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 5s 406ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 5s 528ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 5s 188ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 5s 333ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 5s 488ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 6s 88ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 5s 121ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 6s 885ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 5s 434ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 5s 309ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 5s 462ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 5s 678ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 5s 785ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 5s 235ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 5s 902ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 5s 328ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 5s 650ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 5s 90ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 5s 309ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 5s 942ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 6s 998ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 5s 790ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 5s 376ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 5s 656ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 5s 377ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 5s 453ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 7s 28ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 5s 380ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 5s 831ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 1m 0s
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 55s 866ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 2s 302ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 2s 241ms
/iceberg/iceberg engine/rest catalog/feature OK 6s 998ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 2s 287ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 2s 516ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 2s 193ms
/iceberg/iceberg engine/rest catalog/feature OK 1m 27s
/iceberg/iceberg engine/rest catalog/feature/row policies OK 1m 27s
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 777ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 919ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 774ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 706ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 828ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 914ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 855ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 778ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 903ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 924ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 913ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 825ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 866ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 750ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 729ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 750ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 768ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 894ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 892ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 737ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 802ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 803ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 824ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 868ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 938ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 726ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 905ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 847ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 840ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 899ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 878ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 780ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 792ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 881ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 848ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 733ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 815ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 778ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 874ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 754ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 701ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 762ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 708ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 898ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 798ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 878ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 855ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 853ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 939ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 885ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 773ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 939ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 870ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 937ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 875ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 815ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 914ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 929ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 866ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 694ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 829ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 875ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 858ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 726ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 908ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 808ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 805ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 900ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 799ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 803ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 887ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 706ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 963ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 832ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 960ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 876ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 839ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 881ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 721ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 900ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 975ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 969ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 739ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 835ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 858ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 812ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 722ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 910ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 834ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 904ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 755ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 749ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 787ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 912ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 747ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 816ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 879ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 771ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 803ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 848ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 4s 565ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 541ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 135ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 147ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 135ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 275ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 133ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 800ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 707ms
/iceberg/iceberg engine/rest catalog/feature OK 24m 15s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 24m 15s
/iceberg/iceberg engine/rest catalog/feature OK 4s 847ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 2s 438ms
/iceberg/iceberg engine/rest catalog/feature/append OK 2s 407ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 18m 58s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 11s 658ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 12s 239ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 12s 183ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 10s 431ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 10s 469ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 10s 372ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 10s 281ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 10s 573ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 10s 623ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 10s 136ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 10s 353ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 10s 755ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 10s 577ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 10s 656ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 10s 808ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 10s 232ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 10s 474ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 10s 591ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 10s 797ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 10s 318ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 11s 9ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 10s 353ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 10s 656ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 10s 883ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 10s 466ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 10s 532ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 10s 223ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 10s 887ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 10s 594ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 10s 716ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 10s 322ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 10s 439ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 10s 677ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 10s 636ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 10s 520ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 10s 453ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 10s 766ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 10s 587ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 10s 285ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 10s 962ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 11s 127ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 12s 469ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 11s 883ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 11s 212ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 11s 606ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 12s 249ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 11s 875ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 11s 542ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 11s 789ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 11s 526ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 12s 128ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 12s 780ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 12s 59ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 11s 941ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 11s 579ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 11s 904ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 12s 379ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 12s 21ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 12s 304ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 12s 643ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 11s 949ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 11s 818ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 11s 741ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 11s 551ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 11s 702ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 12s 106ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 11s 351ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 11s 205ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 12s 325ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 12s 212ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 11s 622ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 12s 187ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 12s 258ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 11s 986ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 11s 973ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 12s 164ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 11s 633ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 11s 241ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 12s 207ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 12s 453ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 12s 109ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 11s 505ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 11s 927ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 11s 228ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 12s 2ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 11s 588ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 11s 850ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 11s 687ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 11s 426ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 12s 236ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 11s 773ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 12s 90ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 12s 466ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 11s 786ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 11s 213ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 12s 235ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 11s 582ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 11s 354ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 11s 611ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 11s 939ms
/iceberg/iceberg engine/rest catalog/swarm OK 2s 635ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 2s 635ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 2m 5s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 2s 322ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 2s 789ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 3s 255ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 3s 418ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 4s 130ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 4s 253ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 4s 535ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 5s 276ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 5s 549ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 5s 759ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 6s 401ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 6s 724ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 7s 592ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 7s 375ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 8s 22ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 8s 419ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 9s 339ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 9s 412ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 10s 169ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 10s 617ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 9m 25s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 5s 485ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 5s 849ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 5s 833ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 5s 457ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 5s 500ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 5s 523ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 5s 746ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 6s 271ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 5s 495ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 5s 509ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 5s 540ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 5s 306ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 5s 422ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 5s 820ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 5s 564ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 5s 495ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 5s 509ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 5s 601ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 5s 560ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 5s 587ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 5s 731ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 5s 665ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 5s 511ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 6s 58ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 5s 702ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 5s 585ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 5s 672ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 5s 856ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 5s 473ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 5s 569ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 5s 801ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 5s 696ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 5s 581ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 5s 652ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 5s 697ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 5s 615ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 5s 622ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 5s 821ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 6s 315ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 5s 840ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 5s 665ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 5s 954ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 5s 643ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 5s 403ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 5s 482ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 5s 571ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 5s 820ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 5s 603ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 5s 754ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 5s 600ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 5s 437ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 5s 727ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 6s 270ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 5s 659ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 5s 463ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 5s 824ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 5s 514ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 5s 590ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 5s 746ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 5s 954ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 5s 628ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 5s 451ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 5s 877ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 5s 909ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 5s 575ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 5s 764ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 5s 557ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 5s 440ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 5s 660ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 5s 770ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 5s 962ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 5s 466ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 5s 373ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 5s 727ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 5s 864ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 5s 482ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 5s 659ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 5s 377ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 5s 267ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 5s 480ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 5s 594ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 5s 667ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 5s 486ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 5s 313ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 5s 473ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 5s 192ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 5s 761ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 5s 888ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 5s 551ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 5s 545ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 5s 567ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 5s 400ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 5s 779ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 5s 741ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 5s 994ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 5s 633ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 5s 625ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 5s 837ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 5s 841ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 5s 878ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 24s 307ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type XFail 6s 421ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause XFail 3s 943ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type XFail 3s 860ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 10s 79ms
/iceberg/iceberg engine/rest catalog/datatypes OK 16s 988ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 16s 987ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 2ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition Skip 1ms
/iceberg/iceberg engine/rest catalog/dot separated column names OK 3s 854ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 1s 736ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 2s 115ms
/iceberg/iceberg engine/rest catalog/sort key timezone OK 13ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and utc timezone Skip 1ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with hour transform and utc timezone Skip 1ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with month transform and utc timezone Skip 4ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with year transform and utc timezone Skip 925us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and positive utc offset timezone Skip 1ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and negative utc offset timezone Skip 1ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and timestamptz type Skip 1ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint OK 2ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint/similar table names hint Skip 1ms
/iceberg/s3 table function OK 1s 678ms
/iceberg/s3 table function/s3 table function OK 1s 677ms
/iceberg/icebergS3 table function OK 3m 17s
/iceberg/icebergS3 table function/rest catalog OK 1m 30s
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 50s 749ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 1s 818ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 1s 944ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 23s 525ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 23s 457ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 40s 156ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 16s 416ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 666ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 888ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 96ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 326ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 607ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 930ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 693ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 499ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 438ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 411ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 434ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 446ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 418ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 409ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 810ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 863ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 838ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 836ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 788ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 430ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 875ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 132ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 353ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 648ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 975ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 117ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 844ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 674ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 645ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 755ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 723ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 743ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 664ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 566ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 676ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 673ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 674ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 676ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 645ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 442ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 531ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 722ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 964ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 152ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 407ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 887ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 679ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 466ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 268ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 200ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 204ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 212ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 206ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 211ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 204ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 177ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 199ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 192ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 180ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 161ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 23s 737ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 231ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 435ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 646ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 942ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 130ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 916ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 912ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 936ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 913ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 908ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 923ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 903ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 910ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 894ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 901ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 897ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 849ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 833ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 791ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 791ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 649ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 4ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 354ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 623ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 2s 814ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 659ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 716ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 749ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 1s 766ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 1s 855ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 1s 785ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 1s 657ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 1s 667ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 1s 721ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 848ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 733ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 711ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 698ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 655ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 454ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 514ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 721ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 940ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 179ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 514ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 33ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 815ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 570ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 323ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 301ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 269ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 293ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 271ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 259ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 323ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 317ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 283ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 313ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 307ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 163ms
/iceberg/icebergS3 table function/glue catalog OK 1m 46s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 51s 684ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 1s 856ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 971ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 23s 944ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 23s 909ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 54s 500ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 26s 512ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 1s 234ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 1s 490ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 706ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 936ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 2s 159ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 917ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 863ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 839ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 899ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 853ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 843ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 861ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 843ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 829ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 845ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 842ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 842ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 807ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 809ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 848ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 836ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 92ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 364ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 690ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 2s 887ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 662ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 702ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 685ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 1s 723ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 1s 749ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 1s 746ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 1s 776ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 1s 762ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 1s 728ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 676ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 618ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 602ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 589ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 522ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 492ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 535ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 772ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 971ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 184ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 419ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 896ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 645ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 473ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 244ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 190ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 216ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 197ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 217ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 212ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 182ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 192ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 202ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 213ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 189ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 189ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 27s 986ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 1s 562ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 1s 347ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 841ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 2s 74ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 2s 329ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 978ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 1s 24ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 1s 8ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 983ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 998ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 996ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 949ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 976ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 958ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 997ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 1s 5ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 1s 11ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 984ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 945ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 974ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 953ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 2s 302ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 495ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 3s 201ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 429ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 910ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 969ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 931ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 1s 949ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 1s 894ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 1s 810ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 1s 859ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 1s 777ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 1s 769ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 722ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 715ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 686ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 783ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 555ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 562ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 555ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 767ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 987ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 236ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 497ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 7ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 796ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 555ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 323ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 221ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 337ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 317ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 326ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 313ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 227ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 315ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 320ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 277ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 311ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 284ms
/iceberg/iceberg cache OK 5ms
/iceberg/iceberg cache/rest catalog Skip 2ms
/iceberg/iceberg cache/glue catalog Skip 1ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922