Skip to content

Commit 875b9f3

Browse files
committed
for test
1 parent 55542d4 commit 875b9f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/query/service/src/interpreters/interpreter_table_recluster.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ impl ReclusterTableInterpreter {
253253
let rows_per_block = block_thresholds
254254
.calc_rows_per_block(total_bytes, total_rows)
255255
.max(block_size as usize);
256-
let total_partitions = std::cmp::max(total_rows / rows_per_block, 1);
256+
let total_partitions = std::cmp::max(total_rows / rows_per_block, 1000);
257257

258258
let ast_exprs = tbl.resolve_cluster_keys(self.ctx.clone()).unwrap();
259259
let cluster_keys_len = ast_exprs.len();

0 commit comments

Comments
 (0)