Truncate.php in Drupal 8
Same filename in this branch
- 8 core/lib/Drupal/Core/Database/Query/Truncate.php
- 8 core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php
- 8 core/lib/Drupal/Core/Database/Driver/pgsql/Truncate.php
- 8 core/lib/Drupal/Core/Database/Driver/mysql/Truncate.php
- 8 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Truncate.php
- 8 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Truncate.php
File
core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Truncate.phpView source
<?php
namespace Drupal\driver_test\Driver\Database\DrivertestPgsql;
use Drupal\Core\Database\Driver\pgsql\Truncate as CoreTruncate;
/**
* PostgreSQL implementation of \Drupal\Core\Database\Query\Truncate.
*/
class Truncate extends CoreTruncate {
}
Classes
Name | Description |
---|---|
Truncate | PostgreSQL implementation of \Drupal\Core\Database\Query\Truncate. |