change gzipped detection

This commit is contained in:
Daniel Eisenberg
2025-09-30 09:58:55 +03:00
parent 6b9abf6122
commit 459ce3478f
9 changed files with 180 additions and 11 deletions

View File

@@ -103,7 +103,7 @@ ValueStatsAnalyzer::ValueStatsAnalyzer(const std::string &cur_val)
bool lastNul = false; // whether last processed character was ASCII NUL
size_t curValLength = cur_val.length();
if (curValLength == 0) {
if (curValLength == 0 || Waap::Util::isGzipped(cur_val)) {
canSplitSemicolon = false;
canSplitPipe = false;
return;