Skip to content

Commit c2fc385

Browse files
committed
fix comment
1 parent 4ee5687 commit c2fc385

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sql/core/src/main/scala/org/apache/spark/sql/execution/aggregate/ColumnarAggMapCodeGenerator.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ import org.apache.spark.sql.catalyst.expressions.codegen.CodegenContext
2121
import org.apache.spark.sql.types.StructType
2222

2323
/**
24-
* This is a helper object to generate an append-only single-key/single value aggregate hash
25-
* map that can act as a 'cache' for extremely fast key-value lookups while evaluating aggregates
26-
* (and fall back to the `BytesToBytesMap` if a given key isn't found). This is 'codegened' in
27-
* TungstenAggregate to speed up aggregates w/ key.
24+
* This is a helper class to generate an append-only aggregate hash map that can act as a 'cache'
25+
* for extremely fast key-value lookups while evaluating aggregates (and fall back to the
26+
* `BytesToBytesMap` if a given key isn't found). This is 'codegened' in TungstenAggregate to speed
27+
* up aggregates w/ key.
2828
*
2929
* It is backed by a power-of-2-sized array for index lookups and a columnar batch that stores the
3030
* key-value pairs. The index lookups in the array rely on linear probing (with a small number of

0 commit comments

Comments
 (0)