[enhance](mtmv) change mysql table type of mtmv to table (#38797) (#39166)

pick: https://github.com/apache/doris/pull/38797
This commit is contained in:
zhangdong
2024-08-10 18:20:48 +08:00
committed by GitHub
parent 878ce29fa7
commit 4dd9d4e1dc
2 changed files with 16 additions and 1 deletions

View File

@ -488,7 +488,6 @@ public interface TableIf {
return "SYSTEM VIEW";
case INLINE_VIEW:
case VIEW:
case MATERIALIZED_VIEW:
return "VIEW";
case OLAP:
case MYSQL:
@ -504,6 +503,7 @@ public interface TableIf {
case ES_EXTERNAL_TABLE:
case ICEBERG_EXTERNAL_TABLE:
case PAIMON_EXTERNAL_TABLE:
case MATERIALIZED_VIEW:
return "BASE TABLE";
default:
return null;