Truncate.php in Zircon Profile 8
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\Core\Database\Driver\pgsqlFile
core/lib/Drupal/Core/Database/Driver/pgsql/Truncate.phpView source
<?php
/**
* @file
* Contains \Drupal\Core\Database\Driver\pgsql\Truncate.
*/
namespace Drupal\Core\Database\Driver\pgsql;
use Drupal\Core\Database\Query\Truncate as QueryTruncate;
/**
* PostgreSQL implementation of \Drupal\Core\Database\Query\Truncate.
*/
class Truncate extends QueryTruncate {
/**
* {@inheritdoc}
*/
public function execute() {
$this->connection
->addSavepoint();
try {
$result = parent::execute();
} catch (\Exception $e) {
$this->connection
->rollbackSavepoint();
throw $e;
}
$this->connection
->releaseSavepoint();
return $result;
}
}
Classes
Name | Description |
---|---|
Truncate | PostgreSQL implementation of \Drupal\Core\Database\Query\Truncate. |