function InsertDefaultsTest::testDefaultInsertWithFields
Same name in other branches
- 9 core/tests/Drupal/KernelTests/Core/Database/InsertDefaultsTest.php \Drupal\KernelTests\Core\Database\InsertDefaultsTest::testDefaultInsertWithFields()
- 8.9.x core/tests/Drupal/KernelTests/Core/Database/InsertDefaultsTest.php \Drupal\KernelTests\Core\Database\InsertDefaultsTest::testDefaultInsertWithFields()
- 11.x core/tests/Drupal/KernelTests/Core/Database/InsertDefaultsTest.php \Drupal\KernelTests\Core\Database\InsertDefaultsTest::testDefaultInsertWithFields()
Tests that we can insert fields with values and defaults in the same query.
See also
File
-
core/
tests/ Drupal/ KernelTests/ Core/ Database/ InsertDefaultsTest.php, line 52
Class
- InsertDefaultsTest
- Tests the Insert query builder with default values.
Namespace
Drupal\KernelTests\Core\DatabaseCode
public function testDefaultInsertWithFields() : void {
$query = $this->connection
->insert('test')
->fields([
'name' => 'Bob',
])
->useDefaults([
'job',
]);
$id = $query->execute();
$job = $this->connection
->query('SELECT [job] FROM {test} WHERE [id] = :id', [
':id' => $id,
])
->fetchField();
$this->assertSame('Undefined', $job, 'Default field value is set.');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.