bugfix: add cast when replace order expr for some special aggregation funcs
This commit is contained in:
12
deps/oblib/src/lib/container/ob_mask_set2.h
vendored
12
deps/oblib/src/lib/container/ob_mask_set2.h
vendored
@ -49,9 +49,9 @@ public:
|
||||
{
|
||||
bitset_.reuse();
|
||||
}
|
||||
public:
|
||||
int mask(const T &key)
|
||||
{
|
||||
public:
|
||||
int mask(const T &key)
|
||||
{
|
||||
int ret = OB_SUCCESS;
|
||||
if (!is_inited_) {
|
||||
ret = OB_NOT_INIT;
|
||||
@ -117,9 +117,9 @@ public:
|
||||
}
|
||||
}
|
||||
if (OB_SUCCESS == ret) {
|
||||
if (!hit) {
|
||||
ret = OB_MASK_SET_NO_NODE;
|
||||
} else {
|
||||
if (!hit) {
|
||||
ret = OB_MASK_SET_NO_NODE;
|
||||
} else {
|
||||
is_new_mask = tmp_new_mask;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user