From 9439cfc2aacc3dee8804e8bd20129876c3a27702 Mon Sep 17 00:00:00 2001 From: Vinicius Dias Date: Tue, 20 Jun 2023 21:02:15 -0300 Subject: [PATCH] Fixing pdo_sqlite bug_42589.phpt test when ENABLE_COLUMN_METADATA is disabled --- ext/pdo_sqlite/tests/bug_42589.phpt | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ext/pdo_sqlite/tests/bug_42589.phpt b/ext/pdo_sqlite/tests/bug_42589.phpt index ef6b7fdfb8129..45c1fa0a221ca 100644 --- a/ext/pdo_sqlite/tests/bug_42589.phpt +++ b/ext/pdo_sqlite/tests/bug_42589.phpt @@ -3,6 +3,13 @@ PDO SQLite Feature Request #42589 (getColumnMeta() should also return table name --EXTENSIONS-- pdo pdo_sqlite +--SKIPIF-- +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--