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

Clang warnfixes (#2310)

This commit is contained in:
Leonid Fedorov
2022-03-21 21:19:55 +03:00
committed by GitHub
parent 14c4840d53
commit 29679e91ec
2 changed files with 7 additions and 17 deletions

View File

@ -539,16 +539,6 @@ inline bool isNullValue(const T val, const T NULL_VALUE)
return val == NULL_VALUE;
}
template <>
inline bool isNullValue<KIND_TEXT, int64_t>(const int64_t val, const int64_t NULL_VALUE)
{
//@bug 339 might be a token here
// TODO: what's up with the alternative NULL here?
constexpr const int64_t ALT_NULL_VALUE = 0xFFFFFFFFFFFFFFFELL;
return (val == NULL_VALUE || val == ALT_NULL_VALUE);
}
//
// FILTER A COLUMN VALUE
//