[fix](DDL) not set table type as default comment when create table (#36025)

pick from master #35855
This commit is contained in:
morrySnow
2024-06-07 15:29:10 +08:00
committed by GitHub
parent d1318a7d08
commit 9f3fe3e57c
9 changed files with 27 additions and 47 deletions

View File

@ -540,7 +540,7 @@ public abstract class Table extends MetaObject implements Writable, TableIf {
}
return SqlUtils.escapeQuota(comment);
}
return type.name();
return "";
}
public void setComment(String comment) {