Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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());
}
Expand Down