1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-06 14:46:36 +02:00

PostgreSQL: Link parent from inherited tables (bug #1031)

This commit is contained in:
Jakub Vrana
2025-04-13 16:59:07 +02:00
parent a3d0bbba8f
commit 9555c96d6a
6 changed files with 35 additions and 8 deletions

View File

@@ -217,6 +217,13 @@ abstract class SqlDriver {
function tableHelp(string $name, bool $is_view = false) {
}
/** Get tables this table inherits from
* @return list<string>
*/
function inheritsFrom(string $table): array {
return array();
}
/** Get inherited tables
* @return list<string>
*/