We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9e5deb commit bf2c22eCopy full SHA for bf2c22e
src/Symfony/Component/Messenger/Bridge/Doctrine/Tests/Transport/PostgreSqlConnectionTest.php
@@ -68,10 +68,6 @@ public function testTransformTableNameWithSchemaToValidProcedureName()
68
$sql = implode("\n", $connection->getExtraSetupSqlForTable($table));
69
70
$this->assertStringContainsString('CREATE OR REPLACE FUNCTION notify_schema_queue_table', $sql);
71
-
72
- // We MUST NOT use transaction, that will mess with the PDO in PHP 8
73
- $this->assertStringNotContainsString('BEGIN;', $sql);
74
- $this->assertStringNotContainsString('COMMIT;', $sql);
75
}
76
77
public function testGetExtraSetupSqlWrongTable()
0 commit comments