Iceberg Test Run Report

DateSep 21, 2026 4:27
Duration2h 40m
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.33.10001.altinitystable/97fefbd627c0a45be8dbb8207e48a1d847b4be35/regression/

Attributes

projectAltinity/ClickHouse
project.id159717931
user.nameMyroTk
version26.3.33.10001.altinitystable
packagehttps://altinity-build-artifacts.s3.amazonaws.com/REFs/v26.3.33.10001.altinitystable/97fefbd627c0a45be8dbb8207e48a1d847b4be35/build_arm_binary/clickhouse
repositoryhttps://github.com/Altinity/clickhouse-regression
commit.hash3e64dccfa4baf08d56b853fdc24761a45ec81ee0
job.nameiceberg_1
job.retry1
job.urlhttps://github.com/Altinity/ClickHouse/actions/runs/35557661890
archaarch64
localTrue
clickhouse_versionNone
clickhouse_pathhttps://altinity-build-artifacts.s3.amazonaws.com/REFs/v26.3.33.10001.altinitystable/97fefbd627c0a45be8dbb8207e48a1d847b4be35/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 Retried
Modules
1
1
Features
38
2
36
Scenarios
484
9
470
5
Checks
340
340
Steps
53426
53349
8
68
1

Known Fails

Test NameResultMessage
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal columnXFail 5s 95ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 899, 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 491, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 849, 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 5s 244ms
https://github.com/ClickHouse/ClickHouse/issues/80200
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 899, 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 491, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 849, 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 15s 464ms
https://github.com/ClickHouse/ClickHouse/issues/93416
AssertionError
Traceback (most recent call last):
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 899, 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 491, in capture_minio_args
    return func(self, minio_args=minio_args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/regression.py", line 849, in regression
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/feature.py", line 56, in feature
    Feature(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py", line 717, in feature
    Scenario(test=check_iceberg_partition_pruning_with_integer_type)(
  File "/home/ubuntu/_work/ClickHouse/ClickHouse/iceberg/../iceberg/tests/iceberg_engine/use_iceberg_partition_pruning.py", line 161, in check_iceberg_partition_pruning_with_integer_type
    assert int(s3_read_requests_count) <= max_count, error()
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AssertionError: Oops! Assertion failed

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

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

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

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

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

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

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

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

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

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

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

504\|              assert int(min_max_pruned_files) == 0, error()
505\|  
506\|      with And("check that S3ReadRequestsCount is correct"):
507\|          s3_read_requests_count = metrics.get_S3ReadRequestsCount(
508\|              log_comment=log_comment_with_partition_pruning,
509\|          ).output.strip()
510\|          if check_clickhouse_version(">=25.3")(self) or check_if_antalya_build(self):
511\|              assert 137 <= int(s3_read_requests_count), error()
512\|>             assert int(s3_read_requests_count) <= 150, error()
513\|          else:
514\|              assert 200 <= int(s3_read_requests_count), error()
515\|              assert int(s3_read_requests_count) <= 210, error()

Results

Test Name Result Duration
/iceberg OK 2h 40m
/iceberg/iceberg engine OK 2h 31m
/iceberg/iceberg engine/rest catalog OK 2h 31m
/iceberg/iceberg engine/rest catalog/feature OK 1m 40s
/iceberg/iceberg engine/rest catalog/feature/sanity OK 9s 938ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 33s 707ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 4s 691ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 5s 262ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 9s 734ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 3s 558ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 3s 544ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 3s 780ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 3s 954ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 4s 751ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 4s 499ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 4s 381ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 4s 309ms
/iceberg/iceberg engine/rest catalog/feature/select from system databases OK 4s 559ms
/iceberg/iceberg engine/rest catalog/feature OK 28s 220ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 5s 314ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 4s 6ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 8s 135ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 3s 580ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 3s 692ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 3s 483ms
/iceberg/iceberg engine/rest catalog/column rbac OK 19m 49s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 11s 517ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 11s 612ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 11s 81ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 11s 830ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 11s 728ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 11s 182ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 11s 829ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 11s 675ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 11s 417ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 12s 944ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 12s 26ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 11s 558ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 11s 415ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 11s 680ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 11s 390ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 14s 705ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 12s 939ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 11s 928ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 11s 89ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 11s 171ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 11s 762ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 11s 283ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 11s 646ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 11s 76ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 11s 890ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 10s 837ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 11s 597ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 11s 377ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 11s 648ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 12s 183ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 11s 596ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 11s 583ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 11s 289ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 12s 330ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 11s 431ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 11s 111ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 11s 159ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 11s 469ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 11s 247ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 11s 97ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 11s 845ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 11s 139ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 13s 242ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 11s 797ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 11s 274ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 12s 777ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 11s 305ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 12s 361ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 10s 978ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 11s 508ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 11s 260ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 12s 878ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 11s 146ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 12s 36ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 11s 164ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 11s 67ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 11s 91ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 11s 746ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 12s 341ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 11s 692ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 12s 820ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 11s 723ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 11s 222ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 11s 731ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 11s 273ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 11s 276ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 11s 242ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 13s 398ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 12s 370ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 11s 258ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 11s 355ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 11s 776ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 11s 865ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 11s 142ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 11s 260ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 12s 23ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 12s 959ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 10s 945ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 14s 647ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 11s 603ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 11s 292ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 11s 411ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 11s 566ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 12s 327ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 11s 945ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 12s 426ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 11s 331ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 12s 366ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 11s 100ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 11s 635ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 12s 330ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 14s 886ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 12s 317ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 11s 218ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 11s 699ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 11s 230ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 11s 516ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 14s 582ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 11s 313ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 12s 706ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 2m 9s
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 1m 59s
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 5s 95ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 5s 244ms
/iceberg/iceberg engine/rest catalog/rbac OK 15s 881ms
/iceberg/iceberg engine/rest catalog/rbac/select privilege OK 5s 170ms
/iceberg/iceberg engine/rest catalog/rbac/drop table privilege OK 5s 723ms
/iceberg/iceberg engine/rest catalog/rbac/drop database privilege OK 4s 985ms
/iceberg/iceberg engine/rest catalog/row policy OK 3m 14s
/iceberg/iceberg engine/rest catalog/row policy/row policies OK 3m 14s
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #0 OK 1s 637ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #1 OK 2s 19ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #2 OK 1s 813ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #3 OK 1s 639ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #4 OK 1s 882ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #5 OK 1s 948ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #6 OK 1s 887ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #7 OK 1s 820ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #8 OK 1s 940ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #9 OK 1s 955ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #10 OK 1s 863ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #11 OK 1s 672ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #12 OK 1s 789ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #13 OK 1s 600ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #14 OK 1s 623ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #15 OK 1s 605ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #16 OK 1s 706ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #17 OK 1s 981ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #18 OK 1s 964ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #19 OK 1s 711ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #20 OK 1s 836ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #21 OK 1s 722ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #22 OK 1s 778ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #23 OK 1s 960ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #24 OK 1s 893ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #25 OK 1s 545ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #26 OK 2s 15ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #27 OK 1s 872ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #28 OK 1s 812ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #29 OK 1s 964ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #30 OK 1s 923ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #31 OK 1s 747ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #32 OK 1s 702ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #33 OK 1s 951ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #34 OK 2s 25ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #35 OK 1s 583ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #36 OK 1s 841ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #37 OK 1s 849ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #38 OK 2s 1ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #39 OK 1s 617ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #40 OK 1s 741ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #41 OK 1s 930ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #42 OK 1s 773ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #43 OK 2s 124ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #44 OK 1s 873ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #45 OK 2s 103ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #46 OK 2s 130ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #47 OK 1s 833ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #48 OK 2s 36ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #49 OK 1s 903ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #50 OK 1s 647ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #51 OK 2s 93ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #52 OK 1s 919ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #53 OK 2s 68ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #54 OK 1s 977ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #55 OK 1s 904ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #56 OK 2s 101ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #57 OK 2s 50ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #58 OK 1s 920ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #59 OK 1s 570ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #60 OK 1s 918ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #61 OK 1s 994ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #62 OK 1s 958ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #63 OK 1s 567ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #64 OK 1s 965ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #65 OK 1s 705ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #66 OK 1s 796ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #67 OK 2s 8ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #68 OK 1s 818ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #69 OK 1s 806ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #70 OK 2s 2ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #71 OK 1s 608ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #72 OK 1s 955ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #73 OK 1s 764ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #74 OK 1s 986ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #75 OK 1s 808ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #76 OK 1s 786ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #77 OK 1s 801ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #78 OK 1s 665ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #79 OK 1s 952ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #80 OK 1s 959ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #81 OK 1s 923ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #82 OK 1s 591ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #83 OK 1s 758ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #84 OK 1s 890ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #85 OK 1s 783ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #86 OK 1s 576ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #87 OK 1s 907ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #88 OK 1s 952ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #89 OK 1s 894ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #90 OK 1s 709ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #91 OK 1s 560ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #92 OK 1s 827ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #93 OK 1s 990ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #94 OK 1s 564ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #95 OK 1s 832ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #96 OK 2s 48ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #97 OK 1s 738ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #98 OK 1s 760ms
/iceberg/iceberg engine/rest catalog/row policy/row policies/combination #99 OK 1s 769ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 10s 435ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 1s 246ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 306ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 315ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 338ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 618ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 303ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 1s 813ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 1s 505ms
/iceberg/iceberg engine/rest catalog/equality delete reads OK 53m 4s
/iceberg/iceberg engine/rest catalog/equality delete reads/run equality deletes combinations OK 53m 4s
/iceberg/iceberg engine/rest catalog/position delete reads OK 7s 284ms
/iceberg/iceberg engine/rest catalog/position delete reads/read position deletes OK 7s 282ms
/iceberg/iceberg engine/rest catalog/overwrite OK 11s 280ms
/iceberg/iceberg engine/rest catalog/overwrite/overwrite OK 5s 552ms
/iceberg/iceberg engine/rest catalog/overwrite/append OK 5s 725ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 41m 33s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 25s 428ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 25s 562ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 25s 445ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 24s 314ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 24s 620ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 24s 827ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 23s 939ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 24s 881ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 24s 990ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 24s 324ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 24s 685ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 25s 523ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 25s 75ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 25s 164ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 25s 410ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 24s 440ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 25s 119ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 25s 78ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 25s 99ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 24s 239ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 25s 933ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 24s 491ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 25s 127ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 25s 231ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 24s 743ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 25s 50ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 23s 886ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 25s 903ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 25s 286ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 25s 741ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 25s 238ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 25s 483ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 25s 747ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 25s 106ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 25s 7ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 24s 496ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 25s 670ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 25s 95ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 24s 487ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 25s 629ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 24s 630ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 25s 111ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 24s 445ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 24s 426ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 24s 696ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 24s 226ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 24s 449ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 24s 545ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 25s 411ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 24s 437ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 24s 763ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 25s 811ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 25s 408ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 24s 767ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 24s 492ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 24s 880ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 25s 161ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 24s 410ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 25s 9ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 25s 534ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 25s 207ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 25s 15ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 24s 909ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 24s 321ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 25s 117ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 25s 135ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 24s 896ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 23s 718ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 25s 670ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 24s 403ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 25s 865ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 25s 222ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 26s 316ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 25s 721ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 24s 977ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 25s 471ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 24s 585ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 23s 706ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 25s 563ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 25s 386ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 25s 325ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 24s 972ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 25s 887ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 23s 928ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 25s 82ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 24s 919ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 25s 38ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 24s 582ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 24s 118ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 24s 344ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 24s 697ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 25s 102ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 24s 592ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 24s 592ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 24s 268ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 24s 937ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 24s 390ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 24s 203ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 24s 272ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 24s 636ms
/iceberg/iceberg engine/rest catalog/swarm OK 5s 523ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 5s 521ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 5m 1s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 5s 20ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 6s 338ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 7s 251ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 7s 796ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 9s 91ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 10s 539ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 10s 721ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 11s 833ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 12s 997ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 13s 203ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 15s 588ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 16s 602ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 18s 409ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 18s 830ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 19s 0ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 21s 865ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 21s 565ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 23s 834ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 24s 696ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 26s 777ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 21m 43s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 12s 768ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 12s 663ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 12s 881ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 13s 100ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 12s 909ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 12s 952ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 13s 189ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 13s 632ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 13s 432ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 12s 988ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 13s 229ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 12s 390ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 12s 711ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 12s 908ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 12s 565ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 12s 708ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 13s 5ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 13s 316ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 12s 783ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 13s 216ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 12s 620ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 12s 549ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 13s 261ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 12s 896ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 12s 455ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 12s 484ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 12s 511ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 13s 98ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 12s 545ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 12s 957ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 13s 374ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 13s 106ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 13s 527ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 12s 735ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 13s 198ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 12s 875ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 12s 840ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 13s 185ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 13s 268ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 12s 419ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 13s 653ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 12s 869ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 12s 889ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 12s 938ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 12s 973ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 13s 840ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 12s 929ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 12s 888ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 12s 640ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 13s 173ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 13s 85ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 12s 723ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 13s 370ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 13s 473ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 13s 224ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 13s 500ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 12s 970ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 12s 880ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 13s 382ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 13s 494ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 13s 83ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 12s 655ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 13s 238ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 13s 549ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 12s 849ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 13s 265ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 12s 678ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 13s 168ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 13s 295ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 13s 142ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 13s 105ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 13s 36ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 12s 789ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 13s 280ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 13s 775ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 13s 359ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 12s 995ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 12s 775ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 12s 784ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 13s 13ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 13s 22ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 13s 102ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 13s 102ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 12s 465ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 12s 885ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 13s 117ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 13s 433ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 12s 798ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 12s 918ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 13s 184ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 13s 983ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 12s 785ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 13s 187ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 12s 498ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 12s 983ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 13s 458ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 13s 442ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 12s 964ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 12s 775ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 13s 158ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 55s 824ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type XFail 15s 464ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause XFail 10s 227ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type XFail 9s 335ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 20s 790ms
/iceberg/iceberg engine/rest catalog/datatypes OK 34s 101ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 34s 99ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 5ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition Skip 3ms
/iceberg/iceberg engine/rest catalog/dot separated column names OK 8s 709ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 3s 969ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 4s 735ms
/iceberg/iceberg engine/rest catalog/sort key timezone OK 39ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and utc timezone Skip 2ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with hour transform and utc timezone Skip 2ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with month transform and utc timezone Skip 2ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with year transform and utc timezone Skip 2ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and positive utc offset timezone Skip 3ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and negative utc offset timezone Skip 9ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and timestamptz type Skip 2ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint OK 5ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint/similar table names hint Skip 3ms
/iceberg/s3 table function OK 3s 721ms
/iceberg/s3 table function/s3 table function OK 3s 719ms
/iceberg/icebergS3 table function OK 5m 0s
/iceberg/icebergS3 table function/rest catalog OK 2m 16s
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 40s 58ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 4s 62ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 4s 141ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 27s 597ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 4s 252ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 1m 36s
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 38s 629ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 1s 810ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 2s 151ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 2s 472ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 2s 881ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 3s 338ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 1s 525ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 1s 182ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 1s 56ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 1s 206ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 1s 153ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 1s 184ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 1s 132ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 1s 132ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 1s 62ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 1s 903ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 1s 896ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 1s 886ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 1s 826ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 1s 641ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 1s 52ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 2s 212ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 3s 110ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 2s 688ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 4s 215ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 3s 752ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 2s 97ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 963ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 919ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 1s 832ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 1s 846ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 1s 871ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 1s 911ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 1s 855ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 1s 681ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 3s 527ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 3s 530ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 3s 751ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 3s 612ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 3s 297ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 850ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 1s 22ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 377ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 773ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 2s 147ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 2s 658ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 703ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 1s 268ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 917ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 499ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 334ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 434ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 399ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 455ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 357ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 392ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 388ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 402ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 419ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 353ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 332ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 57s 377ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 3s 17ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 2s 630ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 3s 453ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 3s 936ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 4s 391ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 2s 47ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 2s 29ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 2s 138ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 2s 173ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 2s 111ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 2s 119ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 2s 130ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 2s 76ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 2s 95ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 2s 142ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 2s 166ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 2s 81ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 2s 8ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 1s 956ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 1s 872ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 3s 795ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 4s 560ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 5s 875ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 5s 266ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 6s 476ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 4s 33ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 4s 47ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 4s 237ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 4s 182ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 4s 160ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 4s 346ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 4s 328ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 4s 200ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 4s 369ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 4s 318ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 4s 242ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 4s 145ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 3s 978ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 3s 945ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 3s 773ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 1s 65ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 450ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 859ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 2s 257ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 2s 931ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 886ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 1s 422ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 1s 149ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 673ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 410ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 586ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 603ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 617ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 574ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 604ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 609ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 607ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 611ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 570ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 464ms
/iceberg/icebergS3 table function/glue catalog OK 2m 44s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 41s 52ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 4s 196ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 4s 396ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 4s 180ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 28s 274ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 2m 3s
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 1m 0s
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 2s 656ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 3s 28ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 3s 444ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 3s 914ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 4s 369ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 1s 943ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 1s 984ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 2s 35ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 2s 59ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 2s 48ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 2s 20ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 1s 929ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 1s 829ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 1s 793ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 1s 807ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 1s 988ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 1s 831ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 1s 893ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 1s 780ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 1s 798ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 3s 791ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 4s 560ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 5s 923ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 5s 359ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 6s 446ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 3s 871ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 3s 954ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 3s 973ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 3s 960ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 4s 136ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 3s 919ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 3s 981ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 4s 9ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 4s 30ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 4s 40ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 4s 102ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 3s 974ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 3s 718ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 3s 699ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 3s 429ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 1s 74ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 504ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 1s 873ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 2s 309ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 2s 829ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 748ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 1s 307ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 959ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 471ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 446ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 439ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 505ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 469ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 430ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 459ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 413ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 462ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 443ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 431ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 366ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 1m 3s
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 2s 685ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 3s 38ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 3s 573ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 4s 36ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 4s 458ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 2s 165ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 2s 50ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 2s 145ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 2s 151ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 2s 182ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 2s 223ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 2s 67ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 2s 114ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 2s 150ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 2s 12ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 2s 86ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 2s 9ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 1s 944ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 1s 945ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 1s 924ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 3s 838ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 4s 742ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 5s 329ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 5s 998ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 6s 552ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 4s 181ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 4s 73ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 4s 109ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 4s 220ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 4s 203ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 4s 257ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 4s 296ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 4s 163ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 4s 206ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 4s 157ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 4s 153ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 3s 956ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 4s 42ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 3s 976ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 3s 817ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 1s 80ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 1s 522ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 2s 375ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 1s 923ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 2s 995ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 1s 917ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 1s 514ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 1s 21ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 628ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 562ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 512ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 556ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 611ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 514ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 468ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 546ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 562ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 601ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 511ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 389ms
/iceberg/iceberg cache OK 11ms
/iceberg/iceberg cache/rest catalog Skip 4ms
/iceberg/iceberg cache/glue catalog Skip 3ms

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922