1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-4809 This patch introduces vectorized scanning/filtering for short CHAR/VARCHAR columns

Short CHAR/VARCHAR column values contain integer-encoded strings.
    After certain manipulations(orderSwap(strnxfrm(str))) the values
    become integers that preserve original strings order relation
    according to a certain translation rules(collation). Prepared
    values are ready to be SIMD-processed.
This commit is contained in:
Roman Nozdrin
2022-02-17 22:29:14 +00:00
parent f7e4cefda3
commit 7cdc914b4e
4 changed files with 602 additions and 26 deletions

View File

@ -30,6 +30,7 @@ class SimdProcessorTypedTest : public testing::Test {
using IntegralType = T;
public:
void SetUp() override
{
}