Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Commit b1e88e6

Browse files
committed
Fixup max strings reached error messages
1 parent f704fe9 commit b1e88e6

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

omniscidb/StringDictionary/StringDictionary.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -420,8 +420,7 @@ void StringDictionary::getOrAddBulk(const std::vector<String>& input_strings,
420420
}
421421
CHECK_LT(str_count_, MAX_STRCOUNT)
422422
<< "Maximum number (" << str_count_
423-
<< ") of Dictionary encoded Strings reached for this column, offset path "
424-
"for column is";
423+
<< ") of Dictionary encoded Strings reached for this column";
425424
if (fillRateIsHigh(str_count_)) {
426425
// resize when more than 50% is full
427426
increaseHashTableCapacity();
@@ -503,8 +502,7 @@ void StringDictionary::getOrAddBulkParallel(const std::vector<String>& input_str
503502
}
504503
CHECK_LT(shadow_str_count, MAX_STRCOUNT)
505504
<< "Maximum number (" << shadow_str_count
506-
<< ") of Dictionary encoded Strings reached for this column, offset path "
507-
"for column is ";
505+
<< ") of Dictionary encoded Strings reached for this column";
508506
string_memory_ids.push_back(input_string_idx);
509507
sum_new_string_lengths += input_string.size();
510508
string_id_string_dict_hash_table_[hash_bucket] =

0 commit comments

Comments
 (0)