Skip to content

Commit a970fd2

Browse files
committed
fix cloning of DB connection for sqlite in-memory db
fixes #14131
1 parent fcfcdbd commit a970fd2

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

framework/db/Connection.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -1090,8 +1090,11 @@ public function __clone()
10901090

10911091
$this->_master = false;
10921092
$this->_slave = false;
1093-
$this->pdo = null;
10941093
$this->_schema = null;
10951094
$this->_transaction = null;
1095+
if (strncmp($this->dsn, 'sqlite::memory:', 15) === 0) {
1096+
// reset PDO connection, unless its sqlite in-memory, which can only have one connection
1097+
$this->pdo = null;
1098+
}
10961099
}
10971100
}

tests/framework/db/ConnectionTest.php

+18-3
Original file line numberDiff line numberDiff line change
@@ -351,21 +351,36 @@ public function testClone()
351351
$this->assertNotNull($connection->pdo);
352352

353353
$this->assertNull($conn2->transaction);
354-
$this->assertNull($conn2->pdo);
354+
if ($this->driverName === 'sqlite') {
355+
// in-memory sqlite should not reset PDO
356+
$this->assertNotNull($conn2->pdo);
357+
} else {
358+
$this->assertNull($conn2->pdo);
359+
}
355360

356361
$connection->beginTransaction();
357362

358363
$this->assertNotNull($connection->transaction);
359364
$this->assertNotNull($connection->pdo);
360365

361366
$this->assertNull($conn2->transaction);
362-
$this->assertNull($conn2->pdo);
367+
if ($this->driverName === 'sqlite') {
368+
// in-memory sqlite should not reset PDO
369+
$this->assertNotNull($conn2->pdo);
370+
} else {
371+
$this->assertNull($conn2->pdo);
372+
}
363373

364374
$conn3 = clone $connection;
365375

366376
$this->assertNotNull($connection->transaction);
367377
$this->assertNotNull($connection->pdo);
368378
$this->assertNull($conn3->transaction);
369-
$this->assertNull($conn3->pdo);
379+
if ($this->driverName === 'sqlite') {
380+
// in-memory sqlite should not reset PDO
381+
$this->assertNotNull($conn3->pdo);
382+
} else {
383+
$this->assertNull($conn3->pdo);
384+
}
370385
}
371386
}

0 commit comments

Comments
 (0)