mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-8.1' into PHP-8.2
* PHP-8.1: Fix GH-11492: Make test failure: ext/pdo_sqlite/tests/bug_42589.phpt
This commit is contained in:
commit
c44f79b7d5
2 changed files with 11 additions and 0 deletions
4
NEWS
4
NEWS
|
@ -5,6 +5,10 @@ PHP NEWS
|
|||
- PCRE:
|
||||
. Mangle PCRE regex cache key with JIT option. (mvorisek)
|
||||
|
||||
- PDO SQLite:
|
||||
. Fix GH-11492 (Make test failure: ext/pdo_sqlite/tests/bug_42589.phpt).
|
||||
(KapitanOczywisty, CViniciusSDias)
|
||||
|
||||
- Session:
|
||||
. Removed broken url support for transferring session ID. (ilutov)
|
||||
|
||||
|
|
|
@ -3,6 +3,13 @@ PDO SQLite Feature Request #42589 (getColumnMeta() should also return table name
|
|||
--EXTENSIONS--
|
||||
pdo
|
||||
pdo_sqlite
|
||||
--SKIPIF--
|
||||
<?php
|
||||
$db = new PDO("sqlite::memory:");
|
||||
$options = $db->query('PRAGMA compile_options')->fetchAll(PDO::FETCH_COLUMN);
|
||||
if(!in_array('ENABLE_COLUMN_METADATA', $options, true))
|
||||
die("skip sqlite3 must be compiled with SQLITE_ENABLE_COLUMN_METADATA");
|
||||
?>
|
||||
--FILE--
|
||||
<?php
|
||||
$db = new PDO("sqlite::memory:");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue