function EndOfTransactionQueriesTest::getStatementsForTable
Filters statements by table name.
Parameters
string[] $statements: A list of query statements.
$table_name: The name of the table to filter by.
Return value
string[] Filtered statement list.
1 call to EndOfTransactionQueriesTest::getStatementsForTable()
- EndOfTransactionQueriesTest::testEntitySave in core/
tests/ Drupal/ KernelTests/ Core/ Cache/ EndOfTransactionQueriesTest.php
File
-
core/
tests/ Drupal/ KernelTests/ Core/ Cache/ EndOfTransactionQueriesTest.php, line 150
Class
- EndOfTransactionQueriesTest
- Tests that cache tag invalidation queries are delayed to the end of transactions.
Namespace
Drupal\KernelTests\Core\CacheCode
protected function getStatementsForTable(array $statements, $table_name) {
$tables = array_filter(array_map([
$this,
'statementToTableName',
], $statements));
return array_filter($tables, function ($table_for_statement) use ($table_name) {
return $table_for_statement === $table_name;
});
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.