diff --git a/fe/fe-core/src/main/java/org/apache/doris/datasource/InternalCatalog.java b/fe/fe-core/src/main/java/org/apache/doris/datasource/InternalCatalog.java index d1d0b7d4efff44..e499653a53c802 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/datasource/InternalCatalog.java +++ b/fe/fe-core/src/main/java/org/apache/doris/datasource/InternalCatalog.java @@ -2507,6 +2507,10 @@ private boolean createOlapTable(Database db, CreateTableStmt stmt) throws UserEx throw new DdlException( "Row store column rely on light schema change, enable light schema change first"); } + if (storeRowColumn && olapTable instanceof MTMV) { + throw new DdlException( + "Not support store_row_column in MTMV"); + } } catch (AnalysisException e) { throw new DdlException(e.getMessage()); }