Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
| Select | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
0 / 0 |
| forUpdate | |
100.00% |
1 / 1 |
1 | |
100.00% |
0 / 0 |
|||
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\Core\Database\Driver\sqlite\Select. | |
| */ | |
| namespace Drupal\Core\Database\Driver\sqlite; | |
| use Drupal\Core\Database\Query\Select as QuerySelect; | |
| /** | |
| * SQLite implementation of \Drupal\Core\Database\Query\Select. | |
| */ | |
| class Select extends QuerySelect { | |
| public function forUpdate($set = TRUE) { | |
| // SQLite does not support FOR UPDATE so nothing to do. | |
| return $this; | |
| } | |
| } |