diff --git a/Src/Asp.NetCore2/SqlSugar/Realization/QuestDB/DbMaintenance/QuestDBDbMaintenance.cs b/Src/Asp.NetCore2/SqlSugar/Realization/QuestDB/DbMaintenance/QuestDBDbMaintenance.cs index 9f6313827..78221fd8c 100644 --- a/Src/Asp.NetCore2/SqlSugar/Realization/QuestDB/DbMaintenance/QuestDBDbMaintenance.cs +++ b/Src/Asp.NetCore2/SqlSugar/Realization/QuestDB/DbMaintenance/QuestDBDbMaintenance.cs @@ -284,15 +284,16 @@ namespace SqlSugar } public override bool AddColumnRemark(string columnName, string tableName, string description) { - tableName = this.SqlBuilder.GetTranslationTableName(tableName); - string sql = string.Format(this.AddColumnRemarkSql, columnName, tableName, description); - this.Context.Ado.ExecuteCommand(sql); + //tableName = this.SqlBuilder.GetTranslationTableName(tableName); + //string sql = string.Format(this.AddColumnRemarkSql, columnName, tableName, description); + //this.Context.Ado.ExecuteCommand(sql); return true; } public override bool AddTableRemark(string tableName, string description) { - tableName = this.SqlBuilder.GetTranslationTableName(tableName); - return base.AddTableRemark(tableName, description); + //tableName = this.SqlBuilder.GetTranslationTableName(tableName); + //return base.AddTableRemark(tableName, description); + return true; } public override bool UpdateColumn(string tableName, DbColumnInfo columnInfo) {