@@ -351,21 +351,36 @@ public function testClone()
351
351
$ this ->assertNotNull ($ connection ->pdo );
352
352
353
353
$ 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
+ }
355
360
356
361
$ connection ->beginTransaction ();
357
362
358
363
$ this ->assertNotNull ($ connection ->transaction );
359
364
$ this ->assertNotNull ($ connection ->pdo );
360
365
361
366
$ 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
+ }
363
373
364
374
$ conn3 = clone $ connection ;
365
375
366
376
$ this ->assertNotNull ($ connection ->transaction );
367
377
$ this ->assertNotNull ($ connection ->pdo );
368
378
$ 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
+ }
370
385
}
371
386
}
0 commit comments