You are here

public function SqlsrvTest::dataProviderForTestTemporaryTables in Drupal driver for SQL Server and SQL Azure 8.2

Same name and namespace in other branches
  1. 4.2.x tests/src/Kernel/SqlsrvTest.php \Drupal\Tests\sqlsrv\Kernel\SqlsrvTest::dataProviderForTestTemporaryTables()
  2. 3.0.x tests/src/Kernel/SqlsrvTest.php \Drupal\Tests\sqlsrv\Kernel\SqlsrvTest::dataProviderForTestTemporaryTables()
  3. 3.1.x tests/src/Kernel/SqlsrvTest.php \Drupal\Tests\sqlsrv\Kernel\SqlsrvTest::dataProviderForTestTemporaryTables()
  4. 4.0.x tests/src/Kernel/SqlsrvTest.php \Drupal\Tests\sqlsrv\Kernel\SqlsrvTest::dataProviderForTestTemporaryTables()
  5. 4.1.x tests/src/Kernel/SqlsrvTest.php \Drupal\Tests\sqlsrv\Kernel\SqlsrvTest::dataProviderForTestTemporaryTables()

Provides data for testTemporaryTable().

File

tests/src/Kernel/SqlsrvTest.php, line 170

Class

SqlsrvTest
Test behavior that is unique to the Sql Server Driver.

Namespace

Drupal\Tests\sqlsrv\Kernel

Code

public function dataProviderForTestTemporaryTables() {
  return [
    'local' => [
      '#',
      FALSE,
    ],
    'global' => [
      '##',
      TRUE,
    ],
  ];
}