// This file is licensed under the Elastic License 2.0. Copyright 2021 StarRocks Limited. #pragma once #include #include #include "util/raw_container.h" namespace starrocks::vectorized { // Bytes is a special vector in which the internal memory is always allocated with an additional 16 bytes, // to make life easier with 128 bit instructions. typedef starrocks::raw::RawVectorPad16 Bytes; } // namespace starrocks::vectorized