From 95f264caee0511e36a5ebb157d6af47102747809 Mon Sep 17 00:00:00 2001 From: miqrogroove <1371835+miqrogroove@users.noreply.github.com> Date: Mon, 14 Jul 2025 16:42:29 -0400 Subject: [PATCH] Update multi-query.xml Fixes #4778 by clarifying the MySQL "wait" happens after executing all queries. --- reference/mysqli/mysqli/multi-query.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/mysqli/mysqli/multi-query.xml b/reference/mysqli/mysqli/multi-query.xml index 3a0931d3f820..f7d6c35e32f7 100644 --- a/reference/mysqli/mysqli/multi-query.xml +++ b/reference/mysqli/mysqli/multi-query.xml @@ -29,8 +29,8 @@ database processes them sequentially. mysqli_multi_query waits for the first query to complete before returning control to PHP. The MySQL server will then process - the next query in the sequence. Once the next result is ready, MySQL will wait - for the next execution of mysqli_next_result from PHP. + the remaining queries in the sequence. When all results are ready, MySQL will wait + for any remaining executions of mysqli_next_result from PHP. It is recommended to use