summaryrefslogtreecommitdiff
path: root/sql/protocol.h
diff options
context:
space:
mode:
authorguilhem@gbichot3.local <>2007-03-09 16:06:08 +0100
committerguilhem@gbichot3.local <>2007-03-09 16:06:08 +0100
commit8efe1b1faeb9558866828a142961b5da15334816 (patch)
tree57746af6f8466a33d3f1a3c51f70b0526a9dca8f /sql/protocol.h
parentb641bd7b198f41f5e235b58dadff64552df73582 (diff)
parentbe389f62de783d1e1a82ca0f6d37083301f6005f (diff)
downloadmariadb-git-8efe1b1faeb9558866828a142961b5da15334816.tar.gz
manual merge
Diffstat (limited to 'sql/protocol.h')
-rw-r--r--sql/protocol.h12
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