mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2026-02-27 16:50:33 +08:00
Synchronization code
This commit is contained in:
@@ -62,7 +62,7 @@ namespace SqlSugar
|
|||||||
pg_namespace n on n.oid = c.relnamespace and nspname='" + schema + @"'
|
pg_namespace n on n.oid = c.relnamespace and nspname='" + schema + @"'
|
||||||
inner join
|
inner join
|
||||||
pg_tables z on z.tablename=c.relname
|
pg_tables z on z.tablename=c.relname
|
||||||
where relkind = 'r' and relname not like 'pg_%' and relname not like 'sql_%' and schemaname='" + schema + "' order by relname";
|
where relkind in('p', 'r') and relname not like 'pg_%' and relname not like 'sql_%' and schemaname='" + schema + "' order by relname";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
protected override string GetViewInfoListSql
|
protected override string GetViewInfoListSql
|
||||||
|
|||||||
Reference in New Issue
Block a user