diff options
author | unknown <venu@myvenu.com> | 2003-01-20 14:00:50 -0800 |
---|---|---|
committer | unknown <venu@myvenu.com> | 2003-01-20 14:00:50 -0800 |
commit | f8c2477a3dc0ab1f3283feef50d54a0e197574c4 (patch) | |
tree | bf550dd2c8e7a156b4e8757bcf9c618cfbd00256 /sql/sql_prepare.cc | |
parent | e2c7d5d7ec77d056cc2ad7c9d9ef7cb132cc78de (diff) | |
download | mariadb-git-f8c2477a3dc0ab1f3283feef50d54a0e197574c4.tar.gz |
Multi query fix the recursion (SCRUM - For Monty)
Diffstat (limited to 'sql/sql_prepare.cc')
-rw-r--r-- | sql/sql_prepare.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sql/sql_prepare.cc b/sql/sql_prepare.cc index 8e0c031065e..1c6a618427e 100644 --- a/sql/sql_prepare.cc +++ b/sql/sql_prepare.cc @@ -30,7 +30,11 @@ Prepare: - Without executing the query, return back to client the total number of parameters along with result-set metadata information (if any) in the following format: - [STMT_ID:4][Columns:2][Param_count:2][Columns meta info][Params meta info] + [STMT_ID:4] + [Column_count:2] + [Param_count:2] + [Columns meta info] (if Column_count > 0) + [Params meta info] (if Param_count > 0 ) (TODO : 4.1.1) Prepare-execute: |