diff options
author | hf@deer.(none) <> | 2005-02-09 02:54:08 +0400 |
---|---|---|
committer | hf@deer.(none) <> | 2005-02-09 02:54:08 +0400 |
commit | 96558f6ad3ed107b6ff0645db4b496b62ca049e9 (patch) | |
tree | cbbd8c87bb306645df2da91891d307858dcc9a59 /sql/protocol.h | |
parent | 2c26ebe3594077cd90b95aaf591eaacc4eb2cdbe (diff) | |
parent | b94a482ee9fdc45b64eb001a908f52784dfabcc1 (diff) | |
download | mariadb-git-96558f6ad3ed107b6ff0645db4b496b62ca049e9.tar.gz |
Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-5.0
into deer.(none):/home/hf/work/mysql-5.0.clean
Diffstat (limited to 'sql/protocol.h')
-rw-r--r-- | sql/protocol.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/protocol.h b/sql/protocol.h index fddd3ceba94..ad2593d3ab7 100644 --- a/sql/protocol.h +++ b/sql/protocol.h @@ -82,6 +82,7 @@ public: virtual bool store_short(longlong from)=0; virtual bool store_long(longlong from)=0; virtual bool store_longlong(longlong from, bool unsigned_flag)=0; + virtual bool store_decimal(const my_decimal *)=0; virtual bool store(const char *from, uint length, CHARSET_INFO *cs)=0; virtual bool store(const char *from, uint length, CHARSET_INFO *fromcs, CHARSET_INFO *tocs)=0; @@ -107,6 +108,7 @@ public: virtual bool store_short(longlong from); virtual bool store_long(longlong from); virtual bool store_longlong(longlong from, bool unsigned_flag); + virtual bool store_decimal(const my_decimal *); virtual bool store(const char *from, uint length, CHARSET_INFO *cs); virtual bool store(const char *from, uint length, CHARSET_INFO *fromcs, CHARSET_INFO *tocs); @@ -137,6 +139,7 @@ public: virtual bool store_short(longlong from); virtual bool store_long(longlong from); virtual bool store_longlong(longlong from, bool unsigned_flag); + virtual bool store_decimal(const my_decimal *); virtual bool store(const char *from,uint length, CHARSET_INFO *cs); virtual bool store(const char *from, uint length, CHARSET_INFO *fromcs, CHARSET_INFO *tocs); |