From 7dd164f7305ab2ac1bfc95c214935e61be6e6510 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 20 Feb 2004 15:37:45 +0200 Subject: after review fix sql/item.h: typo fixed sql/item_func.h: clear refernce on deleted variable sql/item_subselect.cc: layout fixed sql/sql_base.cc: temporary memory pool allocation moved from open_and_lock_tables sql/sql_prepare.cc: temporary memory pool allocation moved changing in routine suggeted by Monty tests/client_test.c: uncomment accidently commented test --- sql/item.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sql/item.h') diff --git a/sql/item.h b/sql/item.h index 9bdde1c9847..b06bc85d573 100644 --- a/sql/item.h +++ b/sql/item.h @@ -419,7 +419,7 @@ public: int save_in_field(Field *field, bool no_conversions); bool basic_const_item() const { return 1; } Item *new_item() { return new Item_int(name,value,max_length); } - void cleanup() { fixed= 1; } // to privent drop fixed flag + void cleanup() { fixed= 1; } // to prevent drop fixed flag void print(String *str); }; @@ -908,7 +908,7 @@ public: static Item_cache* get_cache(Item_result type); table_map used_tables() const { return used_table_map; } virtual void keep_array() {} - void cleanup() { fixed= 1; } // to privent drop fixed flag + void cleanup() { fixed= 1; } // to prevent drop fixed flag void print(String *str); }; -- cgit v1.2.1