Update gbase

This commit is contained in:
sunkaixuan
2025-11-11 16:21:58 +08:00
parent f74abdc07a
commit a97b241fe3

View File

@@ -73,7 +73,7 @@ trim(a.tabname) as name,
trim(b.comments) as Description trim(b.comments) as Description
from systables a from systables a
left join syscomments b on b.tabname = a.tabname left join syscomments b on b.tabname = a.tabname
where a.tabtype in ('T') and not (a.tabname like 'sys%') AND a.tabname <>'dual' "; where a.tabtype in ('T') and a.tabid > 99";
} }
} }
protected override string GetViewInfoListSql protected override string GetViewInfoListSql
@@ -85,7 +85,7 @@ trim(a.tabname) as name,
trim(b.comments) as Description trim(b.comments) as Description
from systables a from systables a
left join syscomments b on b.tabname = a.tabname left join syscomments b on b.tabname = a.tabname
where a.tabtype in ('V') and not (a.tabname like 'sys%') AND a.tabname <>'dual' "; where a.tabtype in ('V') and a.tabid > 99 ";
} }
} }
#endregion #endregion