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 @@ -8,6 +8,10 @@ PHP NEWS
8
8
- PCRE:
9
9
. Mangle PCRE regex cache key with JIT option. (mvorisek)
10
10
11
+ - PDO SQLite:
12
+ . Fix GH-11492 (Make test failure: ext/pdo_sqlite/tests/bug_42589.phpt).
13
+ (KapitanOczywisty, CViniciusSDias)
14
+
11
15
- Session:
12
16
. Removed broken url support for transferring session ID. (ilutov)
13
17
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