function Schema::getTempNamespaceName

Same name and namespace in other branches
  1. 9 core/modules/pgsql/src/Driver/Database/pgsql/Schema.php \Drupal\pgsql\Driver\Database\pgsql\Schema::getTempNamespaceName()
  2. 8.9.x core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php \Drupal\Core\Database\Driver\pgsql\Schema::getTempNamespaceName()
  3. 10 core/modules/pgsql/src/Driver/Database/pgsql/Schema.php \Drupal\pgsql\Driver\Database\pgsql\Schema::getTempNamespaceName()

Gets PostgreSQL's temporary namespace name.

Return value

string PostgreSQL's temporary namespace name.

1 call to Schema::getTempNamespaceName()
Schema::queryTableInformation in core/modules/pgsql/src/Driver/Database/pgsql/Schema.php
Fetch the list of blobs and sequences used on a table.

File

core/modules/pgsql/src/Driver/Database/pgsql/Schema.php, line 208

Class

Schema
PostgreSQL implementation of <a href="/api/drupal/core%21lib%21Drupal%21Core%21Database%21Schema.php/class/Schema/11.x" title="Provides a base implementation for Database Schema." class="local">\Drupal\Core\Database\Schema</a>.

Namespace

Drupal\pgsql\Driver\Database\pgsql

Code

protected function getTempNamespaceName() {
    if (!isset($this->tempNamespaceName)) {
        $this->tempNamespaceName = $this->connection
            ->query('SELECT nspname FROM pg_namespace WHERE oid = pg_my_temp_schema()')
            ->fetchField();
    }
    return $this->tempNamespaceName;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.