## Adminer dev
- Allow specifying operator in search anywhere
- MySQL 5.0-: Do not load partitioning info in alter table (bug #1099)
+- PostgreSQL: Show structure of inherited tables
- PostgreSQL 11-: Avoid duplicate oid in table status (bug #1089)
- Plugins: Methods processList() and killProcess()
echo "<p class='nowrap'>" . lang('Comment') . ": " . h($comment) . "\n";
}
+if ($fields) {
+ adminer()->tableStructurePrint($fields, $table_status);
+}
+
function tables_links($tables) {
echo "<ul>\n";
foreach ($tables as $table) {
if ($inherits) {
echo "<h3>" . lang('Inherits from') . "</h3>\n";
tables_links($inherits);
-} elseif ($fields) {
- adminer()->tableStructurePrint($fields, $table_status);
}
if (support("indexes") && driver()->supportsIndex($table_status)) {