public Schema::getComment($table, $column = NULL)
Retrieve a table or column comment.
File
core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php, line 826
Class
Schema PostgreSQL implementation of \Drupal\Core\Database\Schema.
Namespace
Drupal\Core\Database\Driver\pgsql
Code
public function getComment($table, $column = NULL) {
$info = $this->getPrefixInfo($table);
// Don't use {} around pg_class, pg_attribute tables.
if (isset($column)) {
return $this->connection->qu