Iceberg Test Run Report

DateJul 20, 2026 17:26
Duration49m 5s
Framework TestFlows 2.0.250110.1002922

Artifacts

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

Attributes

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

Summary

98.1%OK
<1%Known

Statistics

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

Known Fails

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Results

Test Name Result Duration
/iceberg OK 49m 5s
/iceberg/iceberg engine OK 38m 57s
/iceberg/iceberg engine/rest catalog OK 38m 57s
/iceberg/iceberg engine/rest catalog/feature OK 27s 13ms
/iceberg/iceberg engine/rest catalog/feature/sanity OK 4s 281ms
/iceberg/iceberg engine/rest catalog/feature/sort order OK 8s 524ms
/iceberg/iceberg engine/rest catalog/feature/recreate table OK 1s 194ms
/iceberg/iceberg engine/rest catalog/feature/multiple tables OK 1s 373ms
/iceberg/iceberg engine/rest catalog/feature/recreate table and database OK 2s 671ms
/iceberg/iceberg engine/rest catalog/feature/rename database OK 931ms
/iceberg/iceberg engine/rest catalog/feature/rename table from iceberg database OK 857ms
/iceberg/iceberg engine/rest catalog/feature/use database OK 918ms
/iceberg/iceberg engine/rest catalog/feature/array join OK 922ms
/iceberg/iceberg engine/rest catalog/feature/show data lake catalogs in system tables OK 1s 115ms
/iceberg/iceberg engine/rest catalog/feature/show tables queries OK 1s 126ms
/iceberg/iceberg engine/rest catalog/feature/show databases queries OK 1s 36ms
/iceberg/iceberg engine/rest catalog/feature/boolean issue OK 997ms
/iceberg/iceberg engine/rest catalog/feature/select from system databases OK 1s 58ms
/iceberg/iceberg engine/rest catalog/feature OK 6s 663ms
/iceberg/iceberg engine/rest catalog/feature/alter column OK 1s 249ms
/iceberg/iceberg engine/rest catalog/feature/alter comment columns OK 939ms
/iceberg/iceberg engine/rest catalog/feature/alter partitions OK 1s 950ms
/iceberg/iceberg engine/rest catalog/feature/alter settings OK 831ms
/iceberg/iceberg engine/rest catalog/feature/alter delete OK 855ms
/iceberg/iceberg engine/rest catalog/feature/alter order by OK 835ms
/iceberg/iceberg engine/rest catalog/column rbac OK 5m 6s
/iceberg/iceberg engine/rest catalog/column rbac/combination #0 OK 2s 968ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #1 OK 2s 918ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #2 OK 2s 717ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #3 OK 2s 986ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #4 OK 2s 911ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #5 OK 2s 776ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #6 OK 3s 53ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #7 OK 2s 928ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #8 OK 2s 915ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #9 OK 3s 459ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #10 OK 3s 145ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #11 OK 2s 961ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #12 OK 2s 842ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #13 OK 2s 983ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #14 OK 2s 824ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #15 OK 4s 187ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #16 OK 3s 519ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #17 OK 3s 98ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #18 OK 2s 746ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #19 OK 2s 795ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #20 OK 2s 984ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #21 OK 2s 824ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #22 OK 2s 945ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #23 OK 2s 704ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #24 OK 3s 46ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #25 OK 2s 725ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #26 OK 2s 904ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #27 OK 2s 842ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #28 OK 2s 963ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #29 OK 3s 152ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #30 OK 2s 967ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #31 OK 2s 971ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #32 OK 2s 781ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #33 OK 3s 210ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #34 OK 2s 887ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #35 OK 2s 824ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #36 OK 2s 970ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #37 OK 2s 971ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #38 OK 2s 833ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #39 OK 2s 785ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #40 OK 3s 99ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #41 OK 2s 815ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #42 OK 3s 608ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #43 OK 3s 65ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #44 OK 2s 814ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #45 OK 3s 394ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #46 OK 2s 888ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #47 OK 3s 241ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #48 OK 2s 751ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #49 OK 2s 982ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #50 OK 2s 867ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #51 OK 3s 509ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #52 OK 2s 836ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #53 OK 3s 156ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #54 OK 2s 752ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #55 OK 2s 805ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #56 OK 2s 805ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #57 OK 3s 152ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #58 OK 3s 252ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #59 OK 2s 985ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #60 OK 3s 450ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #61 OK 2s 973ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #62 OK 2s 824ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #63 OK 2s 964ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #64 OK 2s 865ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #65 OK 2s 894ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #66 OK 2s 807ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #67 OK 3s 599ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #68 OK 3s 207ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #69 OK 2s 890ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #70 OK 2s 806ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #71 OK 3s 95ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #72 OK 3s 66ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #73 OK 2s 827ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #74 OK 2s 800ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #75 OK 3s 96ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #76 OK 3s 533ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #77 OK 2s 752ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #78 OK 4s 311ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #79 OK 3s 0ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #80 OK 2s 910ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #81 OK 2s 988ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #82 OK 2s 923ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #83 OK 3s 196ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #84 OK 2s 983ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #85 OK 3s 207ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #86 OK 2s 866ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #87 OK 3s 269ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #88 OK 2s 741ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #89 OK 2s 957ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #90 OK 3s 221ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #91 OK 4s 206ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #92 OK 3s 269ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #93 OK 2s 694ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #94 OK 2s 912ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #95 OK 2s 890ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #96 OK 2s 969ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #97 OK 4s 142ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #98 OK 2s 822ms
/iceberg/iceberg engine/rest catalog/column rbac/combination #99 OK 3s 379ms
/iceberg/iceberg engine/rest catalog/predicate push down OK 30s 558ms
/iceberg/iceberg engine/rest catalog/predicate push down/check input format parquet filter push down OK 28s 186ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with decimal column XFail 1s 191ms
/iceberg/iceberg engine/rest catalog/predicate push down/issue with float column XFail 1s 180ms
/iceberg/iceberg engine/rest catalog/feature OK 3s 739ms
/iceberg/iceberg engine/rest catalog/feature/select privilege OK 1s 241ms
/iceberg/iceberg engine/rest catalog/feature/drop table privilege OK 1s 332ms
/iceberg/iceberg engine/rest catalog/feature/drop database privilege OK 1s 164ms
/iceberg/iceberg engine/rest catalog/feature OK 48s 769ms
/iceberg/iceberg engine/rest catalog/feature/row policies OK 48s 768ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #0 OK 416ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #1 OK 562ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #2 OK 423ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #3 OK 376ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #4 OK 469ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #5 OK 502ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #6 OK 467ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #7 OK 442ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #8 OK 521ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #9 OK 521ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #10 OK 474ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #11 OK 406ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #12 OK 446ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #13 OK 384ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #14 OK 381ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #15 OK 380ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #16 OK 389ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #17 OK 518ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #18 OK 502ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #19 OK 403ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #20 OK 444ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #21 OK 440ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #22 OK 434ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #23 OK 512ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #24 OK 527ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #25 OK 379ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #26 OK 528ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #27 OK 527ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #28 OK 445ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #29 OK 515ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #30 OK 491ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #31 OK 446ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #32 OK 408ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #33 OK 529ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #34 OK 523ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #35 OK 377ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #36 OK 474ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #37 OK 450ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #38 OK 515ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #39 OK 377ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #40 OK 378ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #41 OK 457ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #42 OK 383ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #43 OK 517ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #44 OK 440ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #45 OK 533ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #46 OK 518ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #47 OK 451ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #48 OK 530ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #49 OK 442ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #50 OK 382ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #51 OK 515ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #52 OK 441ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #53 OK 521ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #54 OK 463ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #55 OK 447ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #56 OK 529ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #57 OK 522ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #58 OK 510ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #59 OK 375ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #60 OK 475ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #61 OK 510ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #62 OK 517ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #63 OK 386ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #64 OK 522ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #65 OK 449ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #66 OK 463ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #67 OK 504ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #68 OK 445ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #69 OK 460ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #70 OK 510ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #71 OK 384ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #72 OK 516ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #73 OK 460ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #74 OK 498ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #75 OK 420ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #76 OK 455ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #77 OK 448ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #78 OK 386ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #79 OK 496ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #80 OK 527ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #81 OK 488ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #82 OK 373ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #83 OK 437ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #84 OK 463ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #85 OK 442ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #86 OK 383ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #87 OK 489ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #88 OK 552ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #89 OK 521ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #90 OK 394ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #91 OK 376ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #92 OK 447ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #93 OK 513ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #94 OK 389ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #95 OK 422ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #96 OK 520ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #97 OK 765ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #98 OK 456ms
/iceberg/iceberg engine/rest catalog/feature/row policies/combination #99 OK 447ms
/iceberg/iceberg engine/rest catalog/sql clauses OK 2s 543ms
/iceberg/iceberg engine/rest catalog/sql clauses/where clause OK 303ms
/iceberg/iceberg engine/rest catalog/sql clauses/prewhere clause OK 72ms
/iceberg/iceberg engine/rest catalog/sql clauses/group by clause OK 77ms
/iceberg/iceberg engine/rest catalog/sql clauses/having clause OK 76ms
/iceberg/iceberg engine/rest catalog/sql clauses/limit clause OK 149ms
/iceberg/iceberg engine/rest catalog/sql clauses/distinct clause OK 73ms
/iceberg/iceberg engine/rest catalog/sql clauses/join clause OK 484ms
/iceberg/iceberg engine/rest catalog/sql clauses/order by clause OK 373ms
/iceberg/iceberg engine/rest catalog/feature OK 14m 4s
/iceberg/iceberg engine/rest catalog/feature/run equality deletes combinations OK 14m 4s
/iceberg/iceberg engine/rest catalog/feature OK 2s 630ms
/iceberg/iceberg engine/rest catalog/feature/overwrite OK 1s 340ms
/iceberg/iceberg engine/rest catalog/feature/append OK 1s 288ms
/iceberg/iceberg engine/rest catalog/schema evolution OK 10m 11s
/iceberg/iceberg engine/rest catalog/schema evolution/#0 OK 6s 238ms
/iceberg/iceberg engine/rest catalog/schema evolution/#1 OK 6s 284ms
/iceberg/iceberg engine/rest catalog/schema evolution/#2 OK 6s 339ms
/iceberg/iceberg engine/rest catalog/schema evolution/#3 OK 6s 50ms
/iceberg/iceberg engine/rest catalog/schema evolution/#4 OK 6s 5ms
/iceberg/iceberg engine/rest catalog/schema evolution/#5 OK 6s 160ms
/iceberg/iceberg engine/rest catalog/schema evolution/#6 OK 5s 999ms
/iceberg/iceberg engine/rest catalog/schema evolution/#7 OK 6s 131ms
/iceberg/iceberg engine/rest catalog/schema evolution/#8 OK 6s 114ms
/iceberg/iceberg engine/rest catalog/schema evolution/#9 OK 5s 892ms
/iceberg/iceberg engine/rest catalog/schema evolution/#10 OK 6s 1ms
/iceberg/iceberg engine/rest catalog/schema evolution/#11 OK 6s 183ms
/iceberg/iceberg engine/rest catalog/schema evolution/#12 OK 6s 122ms
/iceberg/iceberg engine/rest catalog/schema evolution/#13 OK 6s 95ms
/iceberg/iceberg engine/rest catalog/schema evolution/#14 OK 6s 234ms
/iceberg/iceberg engine/rest catalog/schema evolution/#15 OK 5s 866ms
/iceberg/iceberg engine/rest catalog/schema evolution/#16 OK 6s 53ms
/iceberg/iceberg engine/rest catalog/schema evolution/#17 OK 6s 69ms
/iceberg/iceberg engine/rest catalog/schema evolution/#18 OK 6s 106ms
/iceberg/iceberg engine/rest catalog/schema evolution/#19 OK 5s 886ms
/iceberg/iceberg engine/rest catalog/schema evolution/#20 OK 6s 246ms
/iceberg/iceberg engine/rest catalog/schema evolution/#21 OK 5s 895ms
/iceberg/iceberg engine/rest catalog/schema evolution/#22 OK 6s 132ms
/iceberg/iceberg engine/rest catalog/schema evolution/#23 OK 6s 172ms
/iceberg/iceberg engine/rest catalog/schema evolution/#24 OK 6s 374ms
/iceberg/iceberg engine/rest catalog/schema evolution/#25 OK 6s 24ms
/iceberg/iceberg engine/rest catalog/schema evolution/#26 OK 5s 779ms
/iceberg/iceberg engine/rest catalog/schema evolution/#27 OK 6s 212ms
/iceberg/iceberg engine/rest catalog/schema evolution/#28 OK 6s 105ms
/iceberg/iceberg engine/rest catalog/schema evolution/#29 OK 6s 292ms
/iceberg/iceberg engine/rest catalog/schema evolution/#30 OK 6s 240ms
/iceberg/iceberg engine/rest catalog/schema evolution/#31 OK 6s 210ms
/iceberg/iceberg engine/rest catalog/schema evolution/#32 OK 6s 277ms
/iceberg/iceberg engine/rest catalog/schema evolution/#33 OK 6s 188ms
/iceberg/iceberg engine/rest catalog/schema evolution/#34 OK 6s 201ms
/iceberg/iceberg engine/rest catalog/schema evolution/#35 OK 6s 36ms
/iceberg/iceberg engine/rest catalog/schema evolution/#36 OK 6s 237ms
/iceberg/iceberg engine/rest catalog/schema evolution/#37 OK 6s 273ms
/iceberg/iceberg engine/rest catalog/schema evolution/#38 OK 5s 969ms
/iceberg/iceberg engine/rest catalog/schema evolution/#39 OK 6s 220ms
/iceberg/iceberg engine/rest catalog/schema evolution/#40 OK 6s 21ms
/iceberg/iceberg engine/rest catalog/schema evolution/#41 OK 6s 228ms
/iceberg/iceberg engine/rest catalog/schema evolution/#42 OK 6s 154ms
/iceberg/iceberg engine/rest catalog/schema evolution/#43 OK 5s 973ms
/iceberg/iceberg engine/rest catalog/schema evolution/#44 OK 6s 130ms
/iceberg/iceberg engine/rest catalog/schema evolution/#45 OK 5s 995ms
/iceberg/iceberg engine/rest catalog/schema evolution/#46 OK 6s 152ms
/iceberg/iceberg engine/rest catalog/schema evolution/#47 OK 6s 291ms
/iceberg/iceberg engine/rest catalog/schema evolution/#48 OK 6s 439ms
/iceberg/iceberg engine/rest catalog/schema evolution/#49 OK 6s 100ms
/iceberg/iceberg engine/rest catalog/schema evolution/#50 OK 6s 191ms
/iceberg/iceberg engine/rest catalog/schema evolution/#51 OK 6s 295ms
/iceberg/iceberg engine/rest catalog/schema evolution/#52 OK 6s 93ms
/iceberg/iceberg engine/rest catalog/schema evolution/#53 OK 6s 197ms
/iceberg/iceberg engine/rest catalog/schema evolution/#54 OK 6s 221ms
/iceberg/iceberg engine/rest catalog/schema evolution/#55 OK 6s 41ms
/iceberg/iceberg engine/rest catalog/schema evolution/#56 OK 6s 39ms
/iceberg/iceberg engine/rest catalog/schema evolution/#57 OK 5s 994ms
/iceberg/iceberg engine/rest catalog/schema evolution/#58 OK 5s 994ms
/iceberg/iceberg engine/rest catalog/schema evolution/#59 OK 6s 369ms
/iceberg/iceberg engine/rest catalog/schema evolution/#60 OK 6s 182ms
/iceberg/iceberg engine/rest catalog/schema evolution/#61 OK 6s 26ms
/iceberg/iceberg engine/rest catalog/schema evolution/#62 OK 6s 49ms
/iceberg/iceberg engine/rest catalog/schema evolution/#63 OK 5s 934ms
/iceberg/iceberg engine/rest catalog/schema evolution/#64 OK 6s 168ms
/iceberg/iceberg engine/rest catalog/schema evolution/#65 OK 6s 103ms
/iceberg/iceberg engine/rest catalog/schema evolution/#66 OK 6s 25ms
/iceberg/iceberg engine/rest catalog/schema evolution/#67 OK 5s 799ms
/iceberg/iceberg engine/rest catalog/schema evolution/#68 OK 6s 222ms
/iceberg/iceberg engine/rest catalog/schema evolution/#69 OK 5s 895ms
/iceberg/iceberg engine/rest catalog/schema evolution/#70 OK 6s 224ms
/iceberg/iceberg engine/rest catalog/schema evolution/#71 OK 6s 76ms
/iceberg/iceberg engine/rest catalog/schema evolution/#72 OK 6s 518ms
/iceberg/iceberg engine/rest catalog/schema evolution/#73 OK 6s 396ms
/iceberg/iceberg engine/rest catalog/schema evolution/#74 OK 6s 225ms
/iceberg/iceberg engine/rest catalog/schema evolution/#75 OK 6s 236ms
/iceberg/iceberg engine/rest catalog/schema evolution/#76 OK 6s 56ms
/iceberg/iceberg engine/rest catalog/schema evolution/#77 OK 5s 809ms
/iceberg/iceberg engine/rest catalog/schema evolution/#78 OK 6s 404ms
/iceberg/iceberg engine/rest catalog/schema evolution/#79 OK 6s 179ms
/iceberg/iceberg engine/rest catalog/schema evolution/#80 OK 6s 163ms
/iceberg/iceberg engine/rest catalog/schema evolution/#81 OK 6s 72ms
/iceberg/iceberg engine/rest catalog/schema evolution/#82 OK 6s 244ms
/iceberg/iceberg engine/rest catalog/schema evolution/#83 OK 5s 984ms
/iceberg/iceberg engine/rest catalog/schema evolution/#84 OK 6s 317ms
/iceberg/iceberg engine/rest catalog/schema evolution/#85 OK 6s 86ms
/iceberg/iceberg engine/rest catalog/schema evolution/#86 OK 6s 64ms
/iceberg/iceberg engine/rest catalog/schema evolution/#87 OK 6s 68ms
/iceberg/iceberg engine/rest catalog/schema evolution/#88 OK 6s 24ms
/iceberg/iceberg engine/rest catalog/schema evolution/#89 OK 6s 63ms
/iceberg/iceberg engine/rest catalog/schema evolution/#90 OK 6s 139ms
/iceberg/iceberg engine/rest catalog/schema evolution/#91 OK 6s 144ms
/iceberg/iceberg engine/rest catalog/schema evolution/#92 OK 5s 995ms
/iceberg/iceberg engine/rest catalog/schema evolution/#93 OK 6s 21ms
/iceberg/iceberg engine/rest catalog/schema evolution/#94 OK 5s 847ms
/iceberg/iceberg engine/rest catalog/schema evolution/#95 OK 6s 95ms
/iceberg/iceberg engine/rest catalog/schema evolution/#96 OK 6s 57ms
/iceberg/iceberg engine/rest catalog/schema evolution/#97 OK 5s 993ms
/iceberg/iceberg engine/rest catalog/schema evolution/#98 OK 6s 5ms
/iceberg/iceberg engine/rest catalog/schema evolution/#99 OK 6s 110ms
/iceberg/iceberg engine/rest catalog/swarm OK 1s 352ms
/iceberg/iceberg engine/rest catalog/swarm/swarm examples OK 1s 351ms
/iceberg/iceberg engine/rest catalog/nested datatypes OK 1m 3s
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 1 OK 1s 218ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 51 OK 1s 438ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 101 OK 1s 712ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 151 OK 1s 757ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 201 OK 1s 984ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 251 OK 2s 142ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 301 OK 2s 382ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 351 OK 2s 545ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 401 OK 2s 929ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 451 OK 3s 2ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 501 OK 3s 133ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 551 OK 3s 349ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 601 OK 3s 735ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 651 OK 3s 894ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 701 OK 3s 820ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 751 OK 4s 472ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 801 OK 4s 602ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 851 OK 4s 921ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 901 OK 5s 77ms
/iceberg/iceberg engine/rest catalog/nested datatypes/number of columns 951 OK 5s 463ms
/iceberg/iceberg engine/rest catalog/partition evolution OK 6m 1s
/iceberg/iceberg engine/rest catalog/partition evolution/#0 OK 3s 519ms
/iceberg/iceberg engine/rest catalog/partition evolution/#1 OK 3s 550ms
/iceberg/iceberg engine/rest catalog/partition evolution/#2 OK 3s 541ms
/iceberg/iceberg engine/rest catalog/partition evolution/#3 OK 3s 529ms
/iceberg/iceberg engine/rest catalog/partition evolution/#4 OK 3s 533ms
/iceberg/iceberg engine/rest catalog/partition evolution/#5 OK 3s 595ms
/iceberg/iceberg engine/rest catalog/partition evolution/#6 OK 3s 650ms
/iceberg/iceberg engine/rest catalog/partition evolution/#7 OK 3s 643ms
/iceberg/iceberg engine/rest catalog/partition evolution/#8 OK 3s 752ms
/iceberg/iceberg engine/rest catalog/partition evolution/#9 OK 3s 773ms
/iceberg/iceberg engine/rest catalog/partition evolution/#10 OK 3s 534ms
/iceberg/iceberg engine/rest catalog/partition evolution/#11 OK 3s 490ms
/iceberg/iceberg engine/rest catalog/partition evolution/#12 OK 3s 509ms
/iceberg/iceberg engine/rest catalog/partition evolution/#13 OK 3s 602ms
/iceberg/iceberg engine/rest catalog/partition evolution/#14 OK 3s 697ms
/iceberg/iceberg engine/rest catalog/partition evolution/#15 OK 3s 569ms
/iceberg/iceberg engine/rest catalog/partition evolution/#16 OK 3s 705ms
/iceberg/iceberg engine/rest catalog/partition evolution/#17 OK 3s 528ms
/iceberg/iceberg engine/rest catalog/partition evolution/#18 OK 3s 503ms
/iceberg/iceberg engine/rest catalog/partition evolution/#19 OK 3s 711ms
/iceberg/iceberg engine/rest catalog/partition evolution/#20 OK 3s 495ms
/iceberg/iceberg engine/rest catalog/partition evolution/#21 OK 3s 489ms
/iceberg/iceberg engine/rest catalog/partition evolution/#22 OK 3s 610ms
/iceberg/iceberg engine/rest catalog/partition evolution/#23 OK 3s 684ms
/iceberg/iceberg engine/rest catalog/partition evolution/#24 OK 3s 609ms
/iceberg/iceberg engine/rest catalog/partition evolution/#25 OK 3s 594ms
/iceberg/iceberg engine/rest catalog/partition evolution/#26 OK 3s 565ms
/iceberg/iceberg engine/rest catalog/partition evolution/#27 OK 3s 612ms
/iceberg/iceberg engine/rest catalog/partition evolution/#28 OK 3s 520ms
/iceberg/iceberg engine/rest catalog/partition evolution/#29 OK 3s 599ms
/iceberg/iceberg engine/rest catalog/partition evolution/#30 OK 3s 712ms
/iceberg/iceberg engine/rest catalog/partition evolution/#31 OK 3s 479ms
/iceberg/iceberg engine/rest catalog/partition evolution/#32 OK 3s 617ms
/iceberg/iceberg engine/rest catalog/partition evolution/#33 OK 3s 785ms
/iceberg/iceberg engine/rest catalog/partition evolution/#34 OK 3s 692ms
/iceberg/iceberg engine/rest catalog/partition evolution/#35 OK 3s 602ms
/iceberg/iceberg engine/rest catalog/partition evolution/#36 OK 3s 525ms
/iceberg/iceberg engine/rest catalog/partition evolution/#37 OK 3s 579ms
/iceberg/iceberg engine/rest catalog/partition evolution/#38 OK 3s 676ms
/iceberg/iceberg engine/rest catalog/partition evolution/#39 OK 3s 589ms
/iceberg/iceberg engine/rest catalog/partition evolution/#40 OK 3s 638ms
/iceberg/iceberg engine/rest catalog/partition evolution/#41 OK 3s 532ms
/iceberg/iceberg engine/rest catalog/partition evolution/#42 OK 3s 768ms
/iceberg/iceberg engine/rest catalog/partition evolution/#43 OK 3s 578ms
/iceberg/iceberg engine/rest catalog/partition evolution/#44 OK 3s 609ms
/iceberg/iceberg engine/rest catalog/partition evolution/#45 OK 3s 773ms
/iceberg/iceberg engine/rest catalog/partition evolution/#46 OK 3s 665ms
/iceberg/iceberg engine/rest catalog/partition evolution/#47 OK 3s 562ms
/iceberg/iceberg engine/rest catalog/partition evolution/#48 OK 3s 471ms
/iceberg/iceberg engine/rest catalog/partition evolution/#49 OK 3s 483ms
/iceberg/iceberg engine/rest catalog/partition evolution/#50 OK 3s 575ms
/iceberg/iceberg engine/rest catalog/partition evolution/#51 OK 3s 558ms
/iceberg/iceberg engine/rest catalog/partition evolution/#52 OK 3s 679ms
/iceberg/iceberg engine/rest catalog/partition evolution/#53 OK 3s 574ms
/iceberg/iceberg engine/rest catalog/partition evolution/#54 OK 3s 454ms
/iceberg/iceberg engine/rest catalog/partition evolution/#55 OK 3s 579ms
/iceberg/iceberg engine/rest catalog/partition evolution/#56 OK 3s 540ms
/iceberg/iceberg engine/rest catalog/partition evolution/#57 OK 3s 545ms
/iceberg/iceberg engine/rest catalog/partition evolution/#58 OK 3s 566ms
/iceberg/iceberg engine/rest catalog/partition evolution/#59 OK 3s 860ms
/iceberg/iceberg engine/rest catalog/partition evolution/#60 OK 3s 748ms
/iceberg/iceberg engine/rest catalog/partition evolution/#61 OK 3s 534ms
/iceberg/iceberg engine/rest catalog/partition evolution/#62 OK 3s 513ms
/iceberg/iceberg engine/rest catalog/partition evolution/#63 OK 3s 644ms
/iceberg/iceberg engine/rest catalog/partition evolution/#64 OK 3s 680ms
/iceberg/iceberg engine/rest catalog/partition evolution/#65 OK 3s 834ms
/iceberg/iceberg engine/rest catalog/partition evolution/#66 OK 3s 664ms
/iceberg/iceberg engine/rest catalog/partition evolution/#67 OK 3s 633ms
/iceberg/iceberg engine/rest catalog/partition evolution/#68 OK 3s 744ms
/iceberg/iceberg engine/rest catalog/partition evolution/#69 OK 3s 674ms
/iceberg/iceberg engine/rest catalog/partition evolution/#70 OK 3s 668ms
/iceberg/iceberg engine/rest catalog/partition evolution/#71 OK 3s 612ms
/iceberg/iceberg engine/rest catalog/partition evolution/#72 OK 3s 725ms
/iceberg/iceberg engine/rest catalog/partition evolution/#73 OK 3s 850ms
/iceberg/iceberg engine/rest catalog/partition evolution/#74 OK 3s 683ms
/iceberg/iceberg engine/rest catalog/partition evolution/#75 OK 3s 680ms
/iceberg/iceberg engine/rest catalog/partition evolution/#76 OK 3s 602ms
/iceberg/iceberg engine/rest catalog/partition evolution/#77 OK 3s 647ms
/iceberg/iceberg engine/rest catalog/partition evolution/#78 OK 3s 622ms
/iceberg/iceberg engine/rest catalog/partition evolution/#79 OK 3s 679ms
/iceberg/iceberg engine/rest catalog/partition evolution/#80 OK 3s 579ms
/iceberg/iceberg engine/rest catalog/partition evolution/#81 OK 3s 572ms
/iceberg/iceberg engine/rest catalog/partition evolution/#82 OK 3s 577ms
/iceberg/iceberg engine/rest catalog/partition evolution/#83 OK 3s 571ms
/iceberg/iceberg engine/rest catalog/partition evolution/#84 OK 3s 578ms
/iceberg/iceberg engine/rest catalog/partition evolution/#85 OK 3s 543ms
/iceberg/iceberg engine/rest catalog/partition evolution/#86 OK 3s 624ms
/iceberg/iceberg engine/rest catalog/partition evolution/#87 OK 3s 508ms
/iceberg/iceberg engine/rest catalog/partition evolution/#88 OK 3s 747ms
/iceberg/iceberg engine/rest catalog/partition evolution/#89 OK 3s 762ms
/iceberg/iceberg engine/rest catalog/partition evolution/#90 OK 3s 778ms
/iceberg/iceberg engine/rest catalog/partition evolution/#91 OK 3s 716ms
/iceberg/iceberg engine/rest catalog/partition evolution/#92 OK 3s 737ms
/iceberg/iceberg engine/rest catalog/partition evolution/#93 OK 3s 539ms
/iceberg/iceberg engine/rest catalog/partition evolution/#94 OK 3s 521ms
/iceberg/iceberg engine/rest catalog/partition evolution/#95 OK 3s 541ms
/iceberg/iceberg engine/rest catalog/partition evolution/#96 OK 3s 564ms
/iceberg/iceberg engine/rest catalog/partition evolution/#97 OK 3s 655ms
/iceberg/iceberg engine/rest catalog/partition evolution/#98 OK 3s 605ms
/iceberg/iceberg engine/rest catalog/partition evolution/#99 OK 3s 635ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning OK 13s 702ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check iceberg partition pruning with integer type XFail 3s 848ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/check partition pruning with complex where clause XFail 2s 294ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/partition pruning with date type XFail 2s 444ms
/iceberg/iceberg engine/rest catalog/iceberg partition pruning/non partitioned table OK 5s 113ms
/iceberg/iceberg engine/rest catalog/datatypes OK 8s 589ms
/iceberg/iceberg engine/rest catalog/datatypes/data types check where OK 8s 588ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition OK 1ms
/iceberg/iceberg engine/rest catalog/iceberg iterator race condition/iceberg iterator race condition Skip 815us
/iceberg/iceberg engine/rest catalog/dot separated column names OK 2s 31ms
/iceberg/iceberg engine/rest catalog/dot separated column names/sanity dot separated column names OK 939ms
/iceberg/iceberg engine/rest catalog/dot separated column names/all datatypes with dot separated columns OK 1s 91ms
/iceberg/iceberg engine/rest catalog/sort key timezone OK 5ms
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and utc timezone Skip 706us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with hour transform and utc timezone Skip 559us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with month transform and utc timezone Skip 521us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with year transform and utc timezone Skip 532us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and positive utc offset timezone Skip 699us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and negative utc offset timezone Skip 513us
/iceberg/iceberg engine/rest catalog/sort key timezone/sort key with day transform and timestamptz type Skip 494us
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint OK 1ms
/iceberg/iceberg engine/rest catalog/show_data_lake_catalogs hint/similar table names hint Skip 773us
/iceberg/s3 table function OK 825ms
/iceberg/s3 table function/s3 table function OK 825ms
/iceberg/icebergS3 table function OK 1m 55s
/iceberg/icebergS3 table function/rest catalog OK 33s 108ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function OK 3s 845ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/sanity OK 921ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table OK 996ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data OK 951ms
/iceberg/icebergS3 table function/rest catalog/icebergS3 table function/recreate table and insert new data multiple times OK 973ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir OK 29s 253ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning OK 10s 605ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 407ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 535ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 733ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 852ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 116ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 704ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 539ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 364ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 263ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 315ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 320ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 376ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 312ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 326ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 563ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 555ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 560ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 543ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 517ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 184ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 512ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 731ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 886ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 1s 134ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 1s 283ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 63ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 786ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 724ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 607ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 459ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 463ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 505ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 451ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 476ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 139ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 250ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 221ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 320ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 311ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 655ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 294ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 421ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 565ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 691ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 872ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 610ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 442ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 318ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 177ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 151ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 148ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 131ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 171ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 166ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 155ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 127ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 160ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 144ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 136ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 94ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning OK 18s 647ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 695ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 940ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 154ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 286ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 476ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 773ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 655ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 653ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 701ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 678ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 665ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 710ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 661ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 703ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 739ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 792ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 667ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 632ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 528ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 427ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 177ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 582ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 846ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 60ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 2s 370ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 376ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 510ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 405ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 1s 536ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 1s 626ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 1s 485ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 1s 643ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 1s 575ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 1s 512ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 501ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 559ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 356ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 399ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 350ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 117ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 305ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 440ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 604ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 718ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 1s 55ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 660ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 555ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 404ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 261ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 151ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 269ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 288ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 233ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 228ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 192ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 247ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 238ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 176ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 216ms
/iceberg/icebergS3 table function/rest catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 201ms
/iceberg/icebergS3 table function/glue catalog OK 1m 22s
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function OK 45s 943ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/sanity OK 997ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table OK 1s 36ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data OK 21s 973ms
/iceberg/icebergS3 table function/glue catalog/icebergS3 table function/recreate table and insert new data multiple times OK 21s 935ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir OK 36s 602ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning OK 17s 246ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3 OK 726ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3 OK 906ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3 OK 1s 85ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3 OK 1s 238ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3 OK 1s 323ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3 OK 673ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3 OK 603ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3 OK 593ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3 OK 617ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3 OK 624ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3 OK 643ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3 OK 628ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3 OK 599ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3 OK 625ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3 OK 637ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3 OK 640ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3 OK 619ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3 OK 549ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3 OK 474ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3 OK 421ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 153ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 585ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 865ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 1ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with icebergS3Cluster OK 2s 275ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 547ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 499ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 464ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with icebergS3Cluster OK 1s 280ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with icebergS3Cluster OK 1s 501ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with icebergS3Cluster OK 1s 548ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with icebergS3Cluster OK 1s 449ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with icebergS3Cluster OK 1s 434ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with icebergS3Cluster OK 1s 518ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 464ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 301ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 330ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 381ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 254ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 89ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #0∕20 with DataLakeCatalog OK 297ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #1∕20 with DataLakeCatalog OK 433ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #2∕20 with DataLakeCatalog OK 546ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #3∕20 with DataLakeCatalog OK 711ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #4∕20 with DataLakeCatalog OK 943ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #5∕20 with DataLakeCatalog OK 631ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #6∕20 with DataLakeCatalog OK 508ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #7∕20 with DataLakeCatalog OK 344ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #8∕20 with DataLakeCatalog OK 231ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #9∕20 with DataLakeCatalog OK 134ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #10∕20 with DataLakeCatalog OK 183ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #11∕20 with DataLakeCatalog OK 144ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #12∕20 with DataLakeCatalog OK 167ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #13∕20 with DataLakeCatalog OK 162ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #14∕20 with DataLakeCatalog OK 170ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #15∕20 with DataLakeCatalog OK 187ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #16∕20 with DataLakeCatalog OK 226ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #17∕20 with DataLakeCatalog OK 216ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #18∕20 with DataLakeCatalog OK 220ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/without partitioning/read data from table #19∕20 with DataLakeCatalog OK 150ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning OK 19s 355ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3 OK 696ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3 OK 907ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3 OK 1s 126ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3 OK 1s 333ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3 OK 1s 450ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3 OK 765ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3 OK 672ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3 OK 637ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3 OK 745ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3 OK 653ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3 OK 655ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3 OK 668ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3 OK 672ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3 OK 676ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3 OK 592ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3 OK 641ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3 OK 639ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3 OK 582ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3 OK 490ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3 OK 459ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with icebergS3Cluster OK 1s 203ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with icebergS3Cluster OK 1s 841ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with icebergS3Cluster OK 1s 880ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with icebergS3Cluster OK 2s 102ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with icebergS3Cluster OK 2s 292ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with icebergS3Cluster OK 1s 394ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with icebergS3Cluster OK 1s 381ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with icebergS3Cluster OK 1s 448ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with icebergS3Cluster OK 1s 389ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with icebergS3Cluster OK 1s 488ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with icebergS3Cluster OK 1s 516ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with icebergS3Cluster OK 1s 482ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with icebergS3Cluster OK 1s 685ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with icebergS3Cluster OK 1s 544ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with icebergS3Cluster OK 1s 565ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with icebergS3Cluster OK 1s 630ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with icebergS3Cluster OK 1s 438ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with icebergS3Cluster OK 1s 324ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with icebergS3Cluster OK 1s 430ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with icebergS3Cluster OK 1s 251ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #0∕20 with DataLakeCatalog OK 321ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #1∕20 with DataLakeCatalog OK 456ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #2∕20 with DataLakeCatalog OK 591ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #3∕20 with DataLakeCatalog OK 819ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #4∕20 with DataLakeCatalog OK 977ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #5∕20 with DataLakeCatalog OK 690ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #6∕20 with DataLakeCatalog OK 552ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #7∕20 with DataLakeCatalog OK 363ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #8∕20 with DataLakeCatalog OK 195ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #9∕20 with DataLakeCatalog OK 324ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #10∕20 with DataLakeCatalog OK 314ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #11∕20 with DataLakeCatalog OK 286ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #12∕20 with DataLakeCatalog OK 283ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #13∕20 with DataLakeCatalog OK 277ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #14∕20 with DataLakeCatalog OK 242ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #15∕20 with DataLakeCatalog OK 214ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #16∕20 with DataLakeCatalog OK 250ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #17∕20 with DataLakeCatalog OK 219ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #18∕20 with DataLakeCatalog OK 231ms
/iceberg/icebergS3 table function/glue catalog/several iceberg tables in one dir/with partitioning/read data from table #19∕20 with DataLakeCatalog OK 109ms
/iceberg/iceberg cache OK 2ms
/iceberg/iceberg cache/rest catalog Skip 993us
/iceberg/iceberg cache/glue catalog Skip 814us

Generated by TestFlows Open-Source Test Framework v2.0.250110.1002922