diff options
author | Diego <diego.dupin@mariadb.com> | 2016-12-08 21:25:16 +0100 |
---|---|---|
committer | Diego <diego.dupin@mariadb.com> | 2016-12-08 21:25:16 +0100 |
commit | 458af6490b54ff1f0c1fe76fd6865aaf04fbaa8f (patch) | |
tree | 227439dd88a27beed6c7ba57c1b6b403821ee7d8 | |
parent | 6cd569e5040afa664b2dbc384e5c2422ac73a557 (diff) | |
download | mariadb-git-10.2-MDEV-11419.tar.gz |
Adding missing EOF_Packet (will not be send when flag CLIENT_DEPRECATE_EOF is set)10.2-MDEV-11419
-rw-r--r-- | sql/sql_class.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_class.cc b/sql/sql_class.cc index 157cca1ca04..53591c371c0 100644 --- a/sql/sql_class.cc +++ b/sql/sql_class.cc @@ -7452,7 +7452,7 @@ bool THD::report_collected_insert_id() mem_root); if (protocol_binary.send_result_set_metadata(&field_list, - Protocol::SEND_NUM_ROWS)) + Protocol::SEND_NUM_ROWS | Protocol::SEND_EOF)) goto error; for (ulonglong i= 0; i < insert_ids->elements; i++) |