summaryrefslogtreecommitdiff
path: root/storage/innobase/include/row0mysql.h
diff options
context:
space:
mode:
authorVasil Dimov <vasil.dimov@oracle.com>2011-12-29 16:12:55 +0200
committerVasil Dimov <vasil.dimov@oracle.com>2011-12-29 16:12:55 +0200
commit93ab1d547dc462f0c723bfdf6a9822afeb6c1df6 (patch)
treefe7e0c1c8d1973369bb141af87d94cbe1a557aa3 /storage/innobase/include/row0mysql.h
parentb7b9a4e8102f7be5ac6eca34b9f3f743dc0af100 (diff)
downloadmariadb-git-93ab1d547dc462f0c723bfdf6a9822afeb6c1df6.tar.gz
Partial fix for Bug#11764622 57480: MEMORY LEAK WHEN HAVING 256+ TABLES
Port vasil.dimov@oracle.com-20111205082831-7v1qu50hvd9hjr3g from mysql-trunk
Diffstat (limited to 'storage/innobase/include/row0mysql.h')
-rw-r--r--storage/innobase/include/row0mysql.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/innobase/include/row0mysql.h b/storage/innobase/include/row0mysql.h
index 27fc1b95808..e17fd584110 100644
--- a/storage/innobase/include/row0mysql.h
+++ b/storage/innobase/include/row0mysql.h
@@ -674,9 +674,9 @@ struct row_prebuilt_struct {
in inserts */
que_fork_t* upd_graph; /*!< Innobase SQL query graph used
in updates or deletes */
- btr_pcur_t* pcur; /*!< persistent cursor used in selects
+ btr_pcur_t pcur; /*!< persistent cursor used in selects
and updates */
- btr_pcur_t* clust_pcur; /*!< persistent cursor used in
+ btr_pcur_t clust_pcur; /*!< persistent cursor used in
some selects and updates */
que_fork_t* sel_graph; /*!< dummy query graph used in
selects */