summaryrefslogtreecommitdiff
path: root/sql/sql_select.h
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2014-08-29 14:07:43 +0300
committerSergey Vojtovich <svoj@mariadb.org>2014-12-05 11:01:51 +0400
commit78564373fee5e6cccf144b11bc60b0876b4bbd0b (patch)
treeb58780d298efdbceee041e5c07d030e500ec64cf /sql/sql_select.h
parent3392278c869a9594f13a0b956d34efb600ab0ed0 (diff)
downloadmariadb-git-78564373fee5e6cccf144b11bc60b0876b4bbd0b.tar.gz
my_alloc.cmariadb-10.1.2
- Changed 0x%lx -> %p array.c: - Static (preallocated) buffer can now be anywhere my_sys.h - Define MY_INIT_BUFFER_USED sql_delete.cc & sql_lex.cc - Use memroot when allocating classes (avoids call to current_thd) sql_explain.h: - Use preallocated buffers sql_explain.cc: - Use preallocated buffers and memroot sql_select.cc: - Use multi_alloc_root() instead of many alloc_root() - Update calls to Explain
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r--sql/sql_select.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h
index 42b2e6b31c2..5e9d570072e 100644
--- a/sql/sql_select.h
+++ b/sql/sql_select.h
@@ -785,7 +785,7 @@ public:
Information about a position of table within a join order. Used in join
optimization.
*/
-typedef struct st_position :public Sql_alloc
+typedef struct st_position
{
/* The table that's put into join order */
JOIN_TAB *table;