summaryrefslogtreecommitdiff
path: root/sql/protocol.cc
diff options
context:
space:
mode:
authorbar@bar.mysql.r18.ru <>2003-04-23 18:19:22 +0500
committerbar@bar.mysql.r18.ru <>2003-04-23 18:19:22 +0500
commit6d5f527afd41e48499babe648b7c69ef0bef038d (patch)
tree563e2fced4c06e8728790984dd7f333b818047c7 /sql/protocol.cc
parent8379f5c4f9e5003b6459d3b8cde7844f183ad697 (diff)
downloadmariadb-git-6d5f527afd41e48499babe648b7c69ef0bef038d.tar.gz
Variable names have been renamed:
client_collation -> collation_client result_collation -> collation_results connection_collation -> collation_connection
Diffstat (limited to 'sql/protocol.cc')
-rw-r--r--sql/protocol.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/protocol.cc b/sql/protocol.cc
index 99b815a7840..d00ecb5dbc4 100644
--- a/sql/protocol.cc
+++ b/sql/protocol.cc
@@ -724,7 +724,7 @@ bool Protocol_simple::store(const char *from, uint length,
bool Protocol_simple::store(const char *from, uint length,
CHARSET_INFO *fromcs)
{
- CHARSET_INFO *tocs= this->thd->variables.result_collation;
+ CHARSET_INFO *tocs= this->thd->variables.collation_results;
#ifndef DEBUG_OFF
DBUG_ASSERT(field_types == 0 ||
field_types[field_pos] == MYSQL_TYPE_DECIMAL ||