Skip to content

Commit af75959

Browse files
committed
fix: select count() result when read from s3 cluster
1 parent 260b3c3 commit af75959

File tree

1 file changed

+2
-1
lines changed
  • tests/integration/test_storage_iceberg

1 file changed

+2
-1
lines changed

tests/integration/test_storage_iceberg/test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,8 @@ def add_df(mode):
650650
)
651651
assert len(cluster_secondary_queries) == 1
652652

653-
assert int(instance.query(f"SELECT count() FROM {table_function_expr_cluster}")) == 100
653+
# write 3 times
654+
assert int(instance.query(f"SELECT count() FROM {table_function_expr_cluster}")) == 100 * 3
654655

655656
@pytest.mark.parametrize("format_version", ["1", "2"])
656657
@pytest.mark.parametrize("storage_type", ["s3", "azure", "local"])

0 commit comments

Comments
 (0)