File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/query/storages/fuse/src/operations Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ impl MatchedAggregator {
201
201
. insert ( offset as usize )
202
202
{
203
203
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" ,
205
205
) ) ;
206
206
}
207
207
}
@@ -335,7 +335,7 @@ impl MatchedAggregator {
335
335
< update_modified_offsets. len ( ) + delete_modified_offsets. len ( )
336
336
{
337
337
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" ,
339
339
) ) ;
340
340
}
341
341
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ impl DeserializeDataTransform {
100
100
let need_wait_runtime_filter =
101
101
!ctx. get_cluster ( ) . is_empty ( ) && ctx. get_wait_runtime_filter ( plan. scan_id ) ;
102
102
103
- // Unfortunately, batch size is hint is only safe for Query now.
103
+ // Unfortunately, the batch size hint is only safe for Query now.
104
104
let batch_size_hint = match ctx. get_query_kind ( ) {
105
105
QueryKind :: Query => Some ( ctx. get_settings ( ) . get_fuse_parquet_read_batch_size ( ) ?) ,
106
106
_ => None ,
You can’t perform that action at this time.
0 commit comments