@@ -207,9 +207,8 @@ impl<const STREAMING: bool> GroupValuesColumn<STREAMING> {
207
207
208
208
/// Scalarized intern
209
209
///
210
- /// This is used only for `streaming aggregation`,
211
- /// because it depends on the order between `input rows` and their corresponding
212
- /// `group indices`.
210
+ /// This is used only for `streaming aggregation`, because `streaming aggregation`
211
+ /// depends on the order between `input rows` and their corresponding `group indices`.
213
212
///
214
213
/// For example, assuming `input rows` in `cols` with 4 new rows
215
214
/// (not equal to `exist rows` in `group_values`, and need to create
@@ -222,7 +221,7 @@ impl<const STREAMING: bool> GroupValuesColumn<STREAMING> {
222
221
/// row4
223
222
/// ```
224
223
///
225
- /// # In [`GroupValuesColumn`] , their `group indices` will be
224
+ /// # In `scalarized_intern` , their `group indices` will be
226
225
///
227
226
/// ```text
228
227
/// row1 --> 0
@@ -234,7 +233,7 @@ impl<const STREAMING: bool> GroupValuesColumn<STREAMING> {
234
233
/// `Group indices` order agrees with their input order, and the `streaming aggregation`
235
234
/// depends on this.
236
235
///
237
- /// # However In [`VectorizedGroupValuesColumn`] , their `group indices` will be
236
+ /// # However In `vectorized_intern` , their `group indices` will be
238
237
///
239
238
/// ```text
240
239
/// row1 --> 2
@@ -1020,7 +1019,7 @@ impl<const STREAMING: bool> GroupValues for GroupValuesColumn<STREAMING> {
1020
1019
self . hashes_buffer . clear ( ) ;
1021
1020
self . hashes_buffer . shrink_to ( count) ;
1022
1021
1023
- // Such structure is only used in `non-streaming` case
1022
+ // Such structures are only used in `non-streaming` case
1024
1023
if !STREAMING {
1025
1024
self . group_index_lists . clear ( ) ;
1026
1025
self . emit_group_index_list_buffer . clear ( ) ;
0 commit comments