diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2014-04-27 19:18:20 +0200 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2014-04-27 19:18:20 +0200 |
commit | f3af6da9765a4541d63de91e8a848d3c3116e957 (patch) | |
tree | 7d725fe7e7ac037890850614ae59c331769aa0aa /storage/connect/myconn.h | |
parent | 24369d217578bfc8140d0617169b6ad527e61e78 (diff) | |
download | mariadb-git-f3af6da9765a4541d63de91e8a848d3c3116e957.tar.gz |
- Enable MYSQL tables to USE result instead of STORE result.
See the issue reported in MDEV-6142.
modified:
storage/connect/myconn.cpp
storage/connect/myconn.h
storage/connect/tabmysql.cpp
storage/connect/tabmysql.h
Diffstat (limited to 'storage/connect/myconn.h')
-rw-r--r-- | storage/connect/myconn.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/storage/connect/myconn.h b/storage/connect/myconn.h index 5bfa58ffb0c..7e892eece34 100644 --- a/storage/connect/myconn.h +++ b/storage/connect/myconn.h @@ -96,5 +96,6 @@ class DllItem MYSQLC { int N; int m_Fields; // The number of result fields int m_Afrw; // The number of affected rows + bool m_Use; // Use or store result set }; // end of class MYSQLC |