github-actions[bot] commented on code in PR #18242:
URL: https://github.com/apache/doris/pull/18242#discussion_r1152704827
##########
be/src/vec/common/hash_table/string_hash_table.h:
##########
@@ -175,8 +175,9 @@ struct StringHashTableEmpty //-V730
size_t get_buffer_size_in_bytes() const { return sizeof(Cell); }
};
-template <size_t initial_size_degree = 8>
-struct StringHashTableGrower : public
HashTableGrowerWithPrecalculation<initial_size_degree> {
+template <size_t initial_size_degree = 8, size_t double_grow_degree = 31>
+struct StringHashTableGrower
+ : public HashTableGrowerWithPrecalculation<initial_size_degree,
double_grow_degree> {
Review Comment:
warning: no template named 'HashTableGrowerWithPrecalculation'
[clang-diagnostic-error]
```cpp
: public HashTableGrowerWithPrecalculation<initial_size_degree,
double_grow_degree> {
^
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]