1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-09 16:17:48 +02:00

PostgreSQL: Display warnings

This commit is contained in:
Jakub Vrana
2018-02-01 11:50:15 +01:00
parent e9add6d985
commit ebb23a7a88
2 changed files with 5 additions and 1 deletions

View File

@@ -173,6 +173,10 @@ if (isset($_GET["pgsql"])) {
return true;
}
function warnings() {
return h(pg_last_notice($this->_conn->_link));
}
}