disable alter partition of materialized view
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
@ -31,9 +31,9 @@ public:
|
||||
{
|
||||
int ret = OB_SUCCESS;
|
||||
if (NULL == array) {
|
||||
ret = OB_INVALID_ARGUMENT;
|
||||
} else if (OB_FAIL(bitset_.reserve(array->count()))) {
|
||||
} else {
|
||||
ret = OB_INVALID_ARGUMENT;
|
||||
} else if (OB_FAIL(bitset_.reserve(array->count()))) {
|
||||
} else {
|
||||
array_ = array;
|
||||
is_inited_ = true;
|
||||
}
|
||||
@ -135,9 +135,9 @@ public:
|
||||
return bool_ret;
|
||||
}
|
||||
int get_not_mask(ObIArray<T> &array) const
|
||||
{
|
||||
int ret = OB_SUCCESS;
|
||||
if (!is_inited_) {
|
||||
{
|
||||
int ret = OB_SUCCESS;
|
||||
if (!is_inited_) {
|
||||
ret = OB_NOT_INIT;
|
||||
} else {
|
||||
array.reset();
|
||||
|
||||
Reference in New Issue
Block a user