Truncate.php
Same filename in this branch
Same filename and directory in other branches
- 8.9.x core/lib/Drupal/Core/Database/Driver/mysql/Truncate.php
- 11.x core/modules/sqlite/src/Driver/Database/sqlite/Truncate.php
- 11.x core/modules/mysql/src/Driver/Database/mysql/Truncate.php
- 11.x core/modules/pgsql/src/Driver/Database/pgsql/Truncate.php
- 11.x core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Truncate.php
- 11.x core/lib/Drupal/Core/Database/Query/Truncate.php
- 10 core/modules/sqlite/src/Driver/Database/sqlite/Truncate.php
- 10 core/modules/mysql/src/Driver/Database/mysql/Truncate.php
- 10 core/modules/pgsql/src/Driver/Database/pgsql/Truncate.php
- 10 core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Truncate.php
- 10 core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php
- 10 core/lib/Drupal/Core/Database/Driver/pgsql/Truncate.php
- 10 core/lib/Drupal/Core/Database/Query/Truncate.php
- 9 core/modules/sqlite/src/Driver/Database/sqlite/Truncate.php
- 9 core/modules/mysql/src/Driver/Database/mysql/Truncate.php
- 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Truncate.php
- 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Truncate.php
- 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Truncate.php
- 9 core/modules/pgsql/src/Driver/Database/pgsql/Truncate.php
- 9 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Truncate.php
- 9 core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php
- 9 core/lib/Drupal/Core/Database/Driver/pgsql/Truncate.php
- 9 core/lib/Drupal/Core/Database/Query/Truncate.php
- 8.9.x core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Truncate.php
- 8.9.x core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Truncate.php
- 8.9.x core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php
- 8.9.x core/lib/Drupal/Core/Database/Driver/pgsql/Truncate.php
- 8.9.x core/lib/Drupal/Core/Database/Query/Truncate.php
Namespace
Drupal\pgsql\Driver\Database\pgsqlFile
-
core/
modules/ pgsql/ src/ Driver/ Database/ pgsql/ Truncate.php
View source
<?php
namespace Drupal\pgsql\Driver\Database\pgsql;
use Drupal\Core\Database\Query\Truncate as QueryTruncate;
// cspell:ignore MVCC
/**
* PostgreSQL implementation of \Drupal\Core\Database\Query\Truncate.
*/
class Truncate extends QueryTruncate {
/**
* {@inheritdoc}
*/
public function execute() : void {
if ($this->connection
->inTransaction()) {
$savepoint = $this->connection
->startTransaction('mimic_implicit_commit');
}
try {
parent::execute();
} catch (\Exception $e) {
if (isset($savepoint)) {
$savepoint->rollback();
}
throw $e;
}
if (isset($savepoint)) {
$savepoint->commitOrRelease();
}
}
/**
* {@inheritdoc}
*
* On PostgreSQL, TRUNCATE is fully transactional: it can be rolled back
* and does not cause an implicit commit, so there is no need to fall back
* to the slower DELETE query when inside a transaction. TRUNCATE is much
* faster on large tables and, unlike DELETE, does not leave dead rows
* behind for VACUUM to clean up.
*
* Note that TRUNCATE takes an ACCESS EXCLUSIVE lock on the table that is
* held until the transaction ends, and it is not MVCC-safe with respect to
* concurrent transactions using a snapshot taken before the truncation.
*
* @see https://www.postgresql.org/docs/current/sql-truncate.html
*/
public function __toString() {
// Create a sanitized comment string to prepend to the query.
$comments = $this->connection
->makeComment($this->comments);
return $comments . 'TRUNCATE {' . $this->connection
->escapeTable($this->table) . '} ';
}
}
Classes
| Title | Deprecated | Summary |
|---|---|---|
| Truncate | PostgreSQL implementation of \Drupal\Core\Database\Query\Truncate. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.