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

chore(build) Rocky8 gcc vanilla build fix

This commit is contained in:
Leonid Fedorov
2024-04-02 18:19:00 +04:00
committed by Leonid Fedorov
parent b79c34b90e
commit a8d3fff79e
5 changed files with 21 additions and 16 deletions

View File

@ -157,7 +157,7 @@ struct ColTypeToIntegral<SystemCatalog::UBIGINT>
template <SystemCatalog::ColDataType CT>
struct ranges_limits
{
using T = ColTypeToIntegral<CT>::type;
using T = typename ColTypeToIntegral<CT>::type;
static constexpr T min()
{
if constexpr (std::is_signed_v<T>)