File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ pub mod sse {
214
214
// potentially leading to the target table being unsuitable for use as a build table in the future.
215
215
// 2. Requires a significant amount of memory to be efficient and currently does not support spill operations.
216
216
// for now we just support sql like below:
217
- // `merge into t using source on xxx when matched then update xxx when not macthed then insert xxx.
217
+ // `merge into t using source on xxx when matched then update xxx when not matched then insert xxx.
218
218
// for merge into:
219
219
// we use MergeIntoBlockInfoIndex to maintain an index for the block info in chunks.
220
220
@@ -331,7 +331,7 @@ impl MergeIntoBlockInfoIndex {
331
331
let left = self . search_idx ( start as u32 ) ;
332
332
let right = self . search_idx ( ( end - 1 ) as u32 ) ;
333
333
if left == right {
334
- // macthed only one block.
334
+ // matched only one block.
335
335
if self . intervals [ left] . 0 == ( start as u32 )
336
336
&& self . intervals [ right] . 1 == ( end - 1 ) as u32
337
337
{
You can’t perform that action at this time.
0 commit comments