fix failed ut tests/queries/0_stateless/01870_modulo_partition_key.sql

This commit is contained in:
taiyang-li 2024-10-22 14:30:39 +08:00
parent 6645ce546b
commit fea26702a8

View File

@ -227,6 +227,10 @@ template <typename A, typename B>
struct ModuloLegacyImpl : ModuloImpl<A, B>
{
using ResultType = typename NumberTraits::ResultOfModuloLegacy<A, B>::Type;
#if USE_EMBEDDED_COMPILER
static constexpr bool compilable = false; /// moduloLegacy is only used in partition key expression
#endif
};
template <typename A, typename B>