test dictionary encoding with index disabled the decision of using dictionary if made at the end of 1st stripe
| 435 | // test dictionary encoding with index disabled |
| 436 | // the decision of using dictionary if made at the end of 1st stripe |
| 437 | TEST(DictionaryEncoding, writeStringDictionaryEncodingWithoutIndex) { |
| 438 | for (auto enableEncodedBlock : {false, true}) { |
| 439 | testStringDictionary(false, DICT_THRESHOLD, enableEncodedBlock); |
| 440 | testStringDictionary(false, FALLBACK_THRESHOLD, enableEncodedBlock); |
| 441 | } |
| 442 | } |
| 443 | |
| 444 | // test dictionary encoding with index enabled |
| 445 | // the decision of using dictionary if made at the end of 1st row group |
nothing calls this directly
no test coverage detected