diff options
author | unknown <guilhem@gbichot3.local> | 2007-03-09 16:06:08 +0100 |
---|---|---|
committer | unknown <guilhem@gbichot3.local> | 2007-03-09 16:06:08 +0100 |
commit | dfd93a8f96a4aa9a1dafebc17b88552d356197fb (patch) | |
tree | 57746af6f8466a33d3f1a3c51f70b0526a9dca8f /sql/protocol.h | |
parent | 1b198eeb6893b4095c70df224eafb2c823f8970f (diff) | |
parent | 7f028f6b03dc9bb01a2a631dfb1def842be35b30 (diff) | |
download | mariadb-git-dfd93a8f96a4aa9a1dafebc17b88552d356197fb.tar.gz |
manual merge
libmysqld/lib_sql.cc:
Auto merged
sql/protocol.cc:
Auto merged
sql/protocol.h:
Auto merged
sql/set_var.cc:
Auto merged
sql/sql_class.cc:
Auto merged
sql/sql_class.h:
Auto merged
sql/sql_prepare.cc:
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 |