summaryrefslogtreecommitdiff
path: root/sql/sql_show.cc
diff options
context:
space:
mode:
authorunknown <bar@bar.mysql.r18.ru>2003-03-17 17:30:34 +0400
committerunknown <bar@bar.mysql.r18.ru>2003-03-17 17:30:34 +0400
commitd2387b1ac7232e8f34f6a738250f448916bfd23c (patch)
tree5ea5b68ab02ef3200ad65fe996a21f6428dec1ed /sql/sql_show.cc
parent61ca875e7b14b5d91db1e6f07e4d13d3ba119a7a (diff)
downloadmariadb-git-d2387b1ac7232e8f34f6a738250f448916bfd23c.tar.gz
sql_show.cc:
Bug fix 0 stayed for length here, now it is charset. sql/sql_show.cc: Bug fix
Diffstat (limited to 'sql/sql_show.cc')
-rw-r--r--sql/sql_show.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_show.cc b/sql/sql_show.cc
index d96d24c1613..5db7d2f1406 100644
--- a/sql/sql_show.cc
+++ b/sql/sql_show.cc
@@ -923,7 +923,7 @@ mysqld_show_keys(THD *thd, TABLE_LIST *table_list)
protocol->store((const char*) pos, system_charset_info);
protocol->store(table->file->index_type(i), system_charset_info);
/* Comment */
- protocol->store("", 0);
+ protocol->store("", system_charset_info);
if (protocol->write())
DBUG_RETURN(1); /* purecov: inspected */
}