From f5e56cf9707a1be547cc29f568d6f60dbdbb1e4c Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Mon, 25 Jul 2016 20:28:39 +0800 Subject: [PATCH] Fixed bug #72668 (Spurious warning when exception is thrown in user defined function) --- NEWS | 2 ++ ext/sqlite3/sqlite3.c | 4 +++- ext/sqlite3/tests/bug72668.phpt | 24 ++++++++++++++++++++++++ 3 files changed, 29 insertions(+), 1 deletion(-) create mode 100644 ext/sqlite3/tests/bug72668.phpt diff --git a/NEWS b/NEWS index 31d8ee7970..6d1b69e49f 100644 --- a/NEWS +++ b/NEWS @@ -75,6 +75,8 @@ PHP NEWS character). (cmb) - SQLite3: + . Fixed bug #72668 (Spurious warning when exception is thrown in user defined + function). (Laruence) . Fixed bug #72571 (SQLite3::bindValue, SQLite3::bindParam crash). (Laruence) - Standard: diff --git a/ext/sqlite3/sqlite3.c b/ext/sqlite3/sqlite3.c index 0e0ef09d25..c9b6686689 100644 --- a/ext/sqlite3/sqlite3.c +++ b/ext/sqlite3/sqlite3.c @@ -672,8 +672,10 @@ PHP_METHOD(sqlite3, querySingle) break; } default: + if (!EG(exception)) { php_sqlite3_error(db_obj, "Unable to execute statement: %s", sqlite3_errmsg(db_obj->db)); - RETVAL_FALSE; + } + RETVAL_FALSE; } sqlite3_finalize(stmt); } diff --git a/ext/sqlite3/tests/bug72668.phpt b/ext/sqlite3/tests/bug72668.phpt new file mode 100644 index 0000000000..ccb238f8e4 --- /dev/null +++ b/ext/sqlite3/tests/bug72668.phpt @@ -0,0 +1,24 @@ +--TEST-- +Bug #72668 (Spurious warning when exception is thrown in user defined function) +--SKIPIF-- + +--FILE-- +createFunction('my_udf_md5', 'my_udf_md5'); + +try { + $result = $db->querySingle('SELECT my_udf_md5("test")'); + var_dump($result); +} +catch(\Exception $e) { + echo "Exception: ".$e->getMessage(); +} +?> +--EXPECT-- +Exception: test exception -- 2.50.1