function DriverSpecificTransactionTestBase::executeDDLStatement

Same name and namespace in other branches
  1. 10 core/tests/Drupal/KernelTests/Core/Database/DriverSpecificTransactionTestBase.php \Drupal\KernelTests\Core\Database\DriverSpecificTransactionTestBase::executeDDLStatement()

Executes a DDL statement.

1 call to DriverSpecificTransactionTestBase::executeDDLStatement()
DriverSpecificTransactionTestBase::testTransactionWithDdlStatement in core/tests/Drupal/KernelTests/Core/Database/DriverSpecificTransactionTestBase.php
Tests the compatibility of transactions with DDL statements.

File

core/tests/Drupal/KernelTests/Core/Database/DriverSpecificTransactionTestBase.php, line 461

Class

DriverSpecificTransactionTestBase
Tests the transaction abstraction system.

Namespace

Drupal\KernelTests\Core\Database

Code

protected function executeDDLStatement() {
    static $count = 0;
    $table = [
        'fields' => [
            'id' => [
                'type' => 'serial',
                'unsigned' => TRUE,
                'not null' => TRUE,
            ],
        ],
        'primary key' => [
            'id',
        ],
    ];
    $this->connection
        ->schema()
        ->createTable('database_test_' . ++$count, $table);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.