Select.php 345 B

1234567891011121314151617
  1. <?php
  2. namespace Drupal\Core\Database\Driver\sqlite;
  3. use Drupal\Core\Database\Query\Select as QuerySelect;
  4. /**
  5. * SQLite implementation of \Drupal\Core\Database\Query\Select.
  6. */
  7. class Select extends QuerySelect {
  8. public function forUpdate($set = TRUE) {
  9. // SQLite does not support FOR UPDATE so nothing to do.
  10. return $this;
  11. }
  12. }