mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-23 12:33:44 +08:00
Update 人大金仓
This commit is contained in:
@@ -78,11 +78,11 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
return @"select cast(relname as varchar) as Name,
|
return @"select cast(relname as varchar) as Name,
|
||||||
cast(obj_description(relfilenode,'pg_class') as varchar) as Description from pg_class c
|
cast(obj_description(relfilenode,'pg_class') as varchar) as Description from pg_class c
|
||||||
where relkind = 'r' and c.oid > 16384 and c.relnamespace != 99 and c.relname not like '%pl_profiler_saved%' order by relname";
|
where relkind = 'r' and c.oid >= 16384 and c.relnamespace != 99 and c.relname not like '%pl_profiler_saved%' order by relname";
|
||||||
}
|
}
|
||||||
return @"select cast(relname as varchar) as Name,
|
return @"select cast(relname as varchar) as Name,
|
||||||
cast(obj_description(relfilenode,'pg_class') as varchar) as Description from sys_class c
|
cast(obj_description(relfilenode,'pg_class') as varchar) as Description from sys_class c
|
||||||
where relkind = 'r' and c.oid > 16384 and c.relnamespace != 99 and c.relname not like '%pl_profiler_saved%' order by relname";
|
where relkind = 'r' and c.oid >= 16384 and c.relnamespace != 99 and c.relname not like '%pl_profiler_saved%' order by relname";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
protected override string GetViewInfoListSql
|
protected override string GetViewInfoListSql
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
<package >
|
<package >
|
||||||
<metadata>
|
<metadata>
|
||||||
<id>SqlSugarCore</id>
|
<id>SqlSugarCore</id>
|
||||||
<version>5.1.4.166</version>
|
<version>5.1.4.166-preview01</version>
|
||||||
<authors>sunkaixuan</authors>
|
<authors>sunkaixuan</authors>
|
||||||
<owners>果糖大数据科技</owners>
|
<owners>果糖大数据科技</owners>
|
||||||
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>
|
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>
|
||||||
|
Reference in New Issue
Block a user