diff options
author | guilhem@gbichot3.local <> | 2007-03-09 16:06:08 +0100 |
---|---|---|
committer | guilhem@gbichot3.local <> | 2007-03-09 16:06:08 +0100 |
commit | 8efe1b1faeb9558866828a142961b5da15334816 (patch) | |
tree | 57746af6f8466a33d3f1a3c51f70b0526a9dca8f /sql/protocol.h | |
parent | b641bd7b198f41f5e235b58dadff64552df73582 (diff) | |
parent | be389f62de783d1e1a82ca0f6d37083301f6005f (diff) | |
download | mariadb-git-8efe1b1faeb9558866828a142961b5da15334816.tar.gz |
manual merge
Diffstat (limited to 'sql/protocol.h')
-rw-r--r-- | sql/protocol.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sql/protocol.h b/sql/protocol.h index 6c4c7414ea5..731caeb1a4c 100644 --- a/sql/protocol.h +++ b/sql/protocol.h @@ -103,11 +103,11 @@ public: /* Class used for the old (MySQL 4.0 protocol) */ -class Protocol_simple :public Protocol +class Protocol_text :public Protocol { public: - Protocol_simple() {} - Protocol_simple(THD *thd_arg) :Protocol(thd_arg) {} + Protocol_text() {} + Protocol_text(THD *thd_arg) :Protocol(thd_arg) {} virtual void prepare_for_resend(); virtual bool store_null(); virtual bool store_tiny(longlong from); @@ -130,13 +130,13 @@ public: }; -class Protocol_prep :public Protocol +class Protocol_binary :public Protocol { private: uint bit_fields; public: - Protocol_prep() {} - Protocol_prep(THD *thd_arg) :Protocol(thd_arg) {} + Protocol_binary() {} + Protocol_binary(THD *thd_arg) :Protocol(thd_arg) {} virtual bool prepare_for_send(List<Item> *item_list); virtual void prepare_for_resend(); #ifdef EMBEDDED_LIBRARY |