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

PostgreSQL: Move partitioned tables from table list to parent table (bug #1031)

This commit is contained in:
Jakub Vrana
2025-04-13 14:05:40 +02:00
parent a735b795b2
commit a9bcde334f
6 changed files with 33 additions and 3 deletions

View File

@@ -217,6 +217,13 @@ abstract class SqlDriver {
function tableHelp(string $name, bool $is_view = false) {
}
/** Get inherited tables
* @return list<string>
*/
function inheritedTables(string $table): array {
return array();
}
/** Check if C-style escapes are supported */
function hasCStyleEscapes(): bool {
return false;