Truncate.php

Same filename in this branch
  1. 10 core/modules/sqlite/src/Driver/Database/sqlite/Truncate.php
  2. 10 core/modules/mysql/src/Driver/Database/mysql/Truncate.php
  3. 10 core/modules/pgsql/src/Driver/Database/pgsql/Truncate.php
  4. 10 core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Truncate.php
  5. 10 core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php
  6. 10 core/lib/Drupal/Core/Database/Query/Truncate.php
Same filename in other branches
  1. 9 core/modules/sqlite/src/Driver/Database/sqlite/Truncate.php
  2. 9 core/modules/mysql/src/Driver/Database/mysql/Truncate.php
  3. 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Truncate.php
  4. 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysqlDeprecatedVersion/Truncate.php
  5. 9 core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Truncate.php
  6. 9 core/modules/pgsql/src/Driver/Database/pgsql/Truncate.php
  7. 9 core/tests/fixtures/database_drivers/module/corefake/src/Driver/Database/corefakeWithAllCustomClasses/Truncate.php
  8. 9 core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php
  9. 9 core/lib/Drupal/Core/Database/Driver/pgsql/Truncate.php
  10. 9 core/lib/Drupal/Core/Database/Query/Truncate.php
  11. 8.9.x core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/Truncate.php
  12. 8.9.x core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestPgsql/Truncate.php
  13. 8.9.x core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php
  14. 8.9.x core/lib/Drupal/Core/Database/Driver/mysql/Truncate.php
  15. 8.9.x core/lib/Drupal/Core/Database/Driver/pgsql/Truncate.php
  16. 8.9.x core/lib/Drupal/Core/Database/Query/Truncate.php
  17. 11.x core/modules/sqlite/src/Driver/Database/sqlite/Truncate.php
  18. 11.x core/modules/mysql/src/Driver/Database/mysql/Truncate.php
  19. 11.x core/modules/pgsql/src/Driver/Database/pgsql/Truncate.php
  20. 11.x core/tests/fixtures/database_drivers/module/core_fake/src/Driver/Database/CoreFakeWithAllCustomClasses/Truncate.php
  21. 11.x core/lib/Drupal/Core/Database/Query/Truncate.php

Namespace

Drupal\Core\Database\Driver\pgsql

File

core/lib/Drupal/Core/Database/Driver/pgsql/Truncate.php

View source
<?php

namespace Drupal\Core\Database\Driver\pgsql;

use Drupal\pgsql\Driver\Database\pgsql\Truncate as PgsqlTruncate;
@trigger_error('\\Drupal\\Core\\Database\\Driver\\pgsql\\Truncate is deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The PostgreSQL database driver has been moved to the pgsql module. See https://www.drupal.org/node/3129492', E_USER_DEPRECATED);

/**
 * PostgreSQL implementation of \Drupal\Core\Database\Query\Truncate.
 *
 * @deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The PostgreSQL
 *   database driver has been moved to the pgsql module.
 *
 * @see https://www.drupal.org/node/3129492
 */
class Truncate extends PgsqlTruncate {

}

Classes

Title Deprecated Summary
Truncate

in drupal:9.4.0 and is removed from drupal:11.0.0. The PostgreSQL database driver has been moved to the pgsql module.

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.