Pull merge.
[yaffs-website] / web / core / lib / Drupal / Core / Database / Driver / sqlite / Select.php
1 <?php
2
3 namespace Drupal\Core\Database\Driver\sqlite;
4
5 use Drupal\Core\Database\Query\Select as QuerySelect;
6
7 /**
8  * SQLite implementation of \Drupal\Core\Database\Query\Select.
9  */
10 class Select extends QuerySelect {
11
12   public function forUpdate($set = TRUE) {
13     // SQLite does not support FOR UPDATE so nothing to do.
14     return $this;
15   }
16
17 }