1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

MCOL-4899 MCS now applies a correct collation running IN for character data types

This commit is contained in:
Roman Nozdrin
2021-12-30 13:44:53 +00:00
committed by Roman Nozdrin
parent b3ab3fb514
commit 05897948e4
5 changed files with 136 additions and 35 deletions

View File

@ -76,6 +76,7 @@ void DictStepJL::createCommand(ByteStream& bs) const
bs << (uint8_t) DICT_STEP;
bs << BOP;
bs << (uint8_t)compressionType;
bs << charsetNumber;
bs << filterCount;
bs << (uint8_t) hasEqFilter;
@ -89,7 +90,6 @@ void DictStepJL::createCommand(ByteStream& bs) const
}
else
bs << filterString;
bs << charsetNumber;
CommandJL::createCommand(bs);
}