Skip to content

Commit b9e3169

Browse files
committed
fix typo
1 parent 4dad9fa commit b9e3169

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/query/storages/fuse/src/operations/merge_into/mutator/matched_mutator.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ impl MatchedAggregator {
201201
.insert(offset as usize)
202202
{
203203
return Err(ErrorCode::UnresolvableConflict(
204-
"1 multi rows from source match one and the same row in the target_table multi times",
204+
"multi rows from source match one and the same row in the target_table multi times",
205205
));
206206
}
207207
}
@@ -335,7 +335,7 @@ impl MatchedAggregator {
335335
< update_modified_offsets.len() + delete_modified_offsets.len()
336336
{
337337
return Err(ErrorCode::UnresolvableConflict(
338-
"2 multi rows from source match one and the same row in the target_table multi times",
338+
"multi rows from source match one and the same row in the target_table multi times",
339339
));
340340
}
341341

src/query/storages/fuse/src/operations/read/parquet_data_source_deserializer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ impl DeserializeDataTransform {
100100
let need_wait_runtime_filter =
101101
!ctx.get_cluster().is_empty() && ctx.get_wait_runtime_filter(plan.scan_id);
102102

103-
// Unfortunately, batch size is hint is only safe for Query now.
103+
// Unfortunately, the batch size hint is only safe for Query now.
104104
let batch_size_hint = match ctx.get_query_kind() {
105105
QueryKind::Query => Some(ctx.get_settings().get_fuse_parquet_read_batch_size()?),
106106
_ => None,

0 commit comments

Comments
 (0)