From 78564373fee5e6cccf144b11bc60b0876b4bbd0b Mon Sep 17 00:00:00 2001 From: Monty Date: Fri, 29 Aug 2014 14:07:43 +0300 Subject: my_alloc.c - 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 --- sql/sql_select.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sql/sql_select.h') 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; -- cgit v1.2.1