From 2bb74e74670dff488fdb55c240f2d682da147fe7 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Mon, 17 Mar 2025 06:38:16 +0100 Subject: [PATCH] Compile: fetch_column() is used only internally --- compile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.php b/compile.php index 46f31eb4..2afff41b 100755 --- a/compile.php +++ b/compile.php @@ -74,7 +74,7 @@ function put_file($match) { } } } - unset($functions["__construct"], $functions["__destruct"], $functions["set_charset"]); + unset($functions["__construct"], $functions["__destruct"], $functions["set_charset"], $functions["fetch_column"]); foreach ($functions as $val) { if (!strpos($return, "$val(")) { fprintf(STDERR, "Missing $val in $vendor\n");