diff options
author | unknown <serg@serg.mylan> | 2003-08-21 21:14:02 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2003-08-21 21:14:02 +0200 |
commit | 36f43ffb229191ca710a620c4515469b8c591b1c (patch) | |
tree | 5cd64e9c7d6eedceacee72ad2dda9353492e6cec /sql/item.h | |
parent | 63f0b92f1ecc9cb3bc25151791dffc7bc13c979c (diff) | |
download | mariadb-git-36f43ffb229191ca710a620c4515469b8c591b1c.tar.gz |
Bug #1064: SHOW CREATE TABLE: avoid allocations for simple tables, old client compatibility
sql/item.h:
fixups
sql/sql_show.cc:
avoid allocations for simple tables
old client compatibility
Diffstat (limited to 'sql/item.h')
-rw-r--r-- | sql/item.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/item.h b/sql/item.h index 3cf5a17805c..d9d125b8bd4 100644 --- a/sql/item.h +++ b/sql/item.h @@ -275,6 +275,7 @@ class Item_empty_string :public Item_string public: Item_empty_string(const char *header,uint length) :Item_string("",0) { name=(char*) header; max_length=length;} + void make_field(Send_field *field); }; class Item_varbinary :public Item |