You've already forked mariadb-columnstore-engine
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:
@ -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
|
||||
//
|
||||
|
Reference in New Issue
Block a user