new OraclePlatform(),
'SELECT w.id AS "id", w.body AS "body", w.headers AS "headers", w.queue_name AS "queue_name", w.created_at AS "created_at", w.available_at AS "available_at", w.delivered_at AS "delivered_at" FROM messenger_messages w WHERE w.id IN (SELECT a.id FROM (SELECT m.id FROM messenger_messages m WHERE (m.delivered_at is null OR m.delivered_at < ?) AND (m.available_at <= ?) AND (m.queue_name = ?) ORDER BY available_at ASC) a WHERE ROWNUM <= 1) FOR UPDATE',
];
} public function testConfigureSchema() { $driverConnection =
$this->
getDBALConnectionMock();
$schema =
new Schema();
$connection =
new Connection(['table_name' => 'queue_table'
],
$driverConnection);
$connection->
configureSchema($schema,
$driverConnection,
fn () => true
);
$this->
assertTrue($schema->
hasTable('queue_table'
));
} public function testConfigureSchemaDifferentDbalConnection() { $driverConnection =
$this->
getDBALConnectionMock();
$driverConnection2 =
$this->
getDBALConnectionMock();
$schema =
new Schema();
$connection =
new Connection([],
$driverConnection);
$connection->
configureSchema($schema,
$driverConnection2,
fn () => false
);