- fix: Firebird rdb$description

This commit is contained in:
2881099
2024-12-05 15:02:56 +08:00
parent 893f59c8d7
commit 905cefedd9

View File

@@ -125,10 +125,11 @@ namespace FreeSql.Firebird
var sql = @"
select
rdb$system_flag,
trim(rdb$relation_name) as id,
trim(rdb$owner_name) as owner,
trim(rdb$relation_name) as name,
trim(rdb$external_description) as comment,
trim(rdb$description) as comment,
rdb$relation_type as type
from rdb$relations
where rdb$system_flag=0" + (tbname == null ? "" : $" and {(ignoreCase ? "upper(trim(rdb$relation_name))" : "trim(rdb$relation_name)")} = {_commonUtils.FormatSql("{0}", tbname.Last())}");