public function Schema::getComment

Same name in this branch
  1. 8.x drupal/core/lib/Drupal/Core/Database/Driver/mysql/Schema.php \Drupal\Core\Database\Driver\mysql\Schema::getComment()
  2. 8.x drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php \Drupal\Core\Database\Driver\pgsql\Schema::getComment()

Retrieve a table or column comment.

File

drupal/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php, line 631
Definition of Drupal\Core\Database\Driver\pgsql\Schema

Class

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
      ->query('SELECT col_description(oid, attnum) FROM pg_class, pg_attribute WHERE attrelid = oid AND relname = ? AND attname = ?', array(
      $info['table'],
      $column,
    ))
      ->fetchField();
  }
  else {
    return $this->connection
      ->query('SELECT obj_description(oid, ?) FROM pg_class WHERE relname = ?', array(
      'pg_class',
      $info['table'],
    ))
      ->fetchField();
  }
}