fix some bugs on priviledges and variabls

This commit is contained in:
jingtaoye35
2023-08-21 13:44:05 +00:00
committed by ob-robot
parent 0fd8eac262
commit 8d100cf383
7 changed files with 42 additions and 13 deletions

View File

@ -2329,6 +2329,24 @@ int ObAggregateProcessor::rollup_aggregation(AggrCell &aggr_cell, AggrCell &roll
LOG_USER_ERROR(OB_NOT_SUPPORTED, "rollup contain agg udfs");
break;
}
case T_FUN_SYS_BIT_AND: {
ret = OB_NOT_SUPPORTED;
LOG_WARN("rollup contain bit_and still not supported", K(ret));
LOG_USER_ERROR(OB_NOT_SUPPORTED, "rollup contain bit_and");
break;
}
case T_FUN_SYS_BIT_OR: {
ret = OB_NOT_SUPPORTED;
LOG_WARN("rollup contain bit_or still not supported", K(ret));
LOG_USER_ERROR(OB_NOT_SUPPORTED, "rollup contain bit_or");
break;
}
case T_FUN_SYS_BIT_XOR: {
ret = OB_NOT_SUPPORTED;
LOG_WARN("rollup contain bit_xor still not supported", K(ret));
LOG_USER_ERROR(OB_NOT_SUPPORTED, "rollup contain bit_xor");
break;
}
default:
ret = OB_ERR_UNEXPECTED;
LOG_WARN("unknown aggr function type", K(aggr_fun));