disable creating materialized view on xmltype columns

This commit is contained in:
leftgeek
2024-01-30 04:42:03 +00:00
committed by ob-robot
parent b7c04012e6
commit 6130c94603
4 changed files with 25 additions and 2 deletions

View File

@ -1487,7 +1487,9 @@ int ObDDLService::generate_schema(
if (OB_SUCC(ret)) {
if (schema.is_materialized_view()) {
if (arg.mv_ainfo_.count() <= 0) {
if (OB_FAIL(ObResolverUtils::check_schema_valid_for_mview(schema))) {
LOG_WARN("failed to check schema valid for mview", KR(ret), K(schema));
} else if (arg.mv_ainfo_.count() <= 0) {
ret = OB_ERR_UNEXPECTED;
LOG_WARN("there should be mv ainfo", KR(ret), K(arg.mv_ainfo_.count()));
} else {

View File

@ -304,7 +304,9 @@ int ObCreateViewResolver::resolve(const ParseNode &parse_tree)
if (is_materialized_view) { //container table is only for mv
if (OB_SUCC(ret)) {
if (OB_FAIL(resolve_table_options(parse_tree.children_[TABLE_OPTION_NODE], false))) {
if (OB_FAIL(ObResolverUtils::check_schema_valid_for_mview(table_schema))) {
LOG_WARN("failed to check schema valid for mview", KR(ret), K(table_schema));
} else if (OB_FAIL(resolve_table_options(parse_tree.children_[TABLE_OPTION_NODE], false))) {
LOG_WARN("fail to resolve table options", KR(ret));
}
}

View File

@ -8622,5 +8622,23 @@ int64_t ObResolverUtils::get_mysql_max_partition_num(const uint64_t tenant_id)
return max_partition_num;
}
int ObResolverUtils::check_schema_valid_for_mview(const ObTableSchema &table_schema)
{
int ret = OB_SUCCESS;
for (int64_t i = 0; OB_SUCC(ret) && (i < table_schema.get_column_count()); ++i) {
const ObColumnSchemaV2 *column_schema = nullptr;
if (OB_ISNULL(column_schema = table_schema.get_column_schema_by_idx(i))) {
ret = OB_ERR_UNEXPECTED;
LOG_WARN("column schema is null", KR(ret));
} else if (column_schema->is_xmltype()) {
ret = OB_NOT_SUPPORTED;
LOG_WARN("create materialized view on xmltype columns is not supported", KR(ret));
LOG_USER_ERROR(OB_NOT_SUPPORTED,
"create materialized view on xmltype columns is");
}
}
return ret;
}
} // namespace sql
} // namespace oceanbase

View File

@ -789,6 +789,7 @@ public:
const share::schema::ObTableSchema &table_schema);
static int64_t get_mysql_max_partition_num(const uint64_t tenant_id);
static int check_schema_valid_for_mview(const share::schema::ObTableSchema &table_schema);
private:
static int try_convert_to_unsiged(const ObExprResType restype,
ObRawExpr& src_expr,