File tree 2 files changed +11
-0
lines changed
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ PHP NEWS
5
5
- PCRE:
6
6
. Mangle PCRE regex cache key with JIT option. (mvorisek)
7
7
8
+ - PDO SQLite:
9
+ . Fix GH-11492 (Make test failure: ext/pdo_sqlite/tests/bug_42589.phpt).
10
+ (KapitanOczywisty, CViniciusSDias)
11
+
8
12
- Session:
9
13
. Removed broken url support for transferring session ID. (ilutov)
10
14
Original file line number Diff line number Diff line change @@ -3,6 +3,13 @@ PDO SQLite Feature Request #42589 (getColumnMeta() should also return table name
3
3
--EXTENSIONS--
4
4
pdo
5
5
pdo_sqlite
6
+ --SKIPIF--
7
+ <?php
8
+ $ db = new PDO ("sqlite::memory: " );
9
+ $ options = $ db ->query ('PRAGMA compile_options ' )->fetchAll (PDO ::FETCH_COLUMN );
10
+ if (!in_array ('ENABLE_COLUMN_METADATA ' , $ options , true ))
11
+ die ("skip sqlite3 must be compiled with SQLITE_ENABLE_COLUMN_METADATA " );
12
+ ?>
6
13
--FILE--
7
14
<?php
8
15
$ db = new PDO ("sqlite::memory: " );
You can’t perform that action at this time.
0 commit comments