From c7b3eeb17888a9b2663decf06d754b8b9f87ce45 Mon Sep 17 00:00:00 2001 From: "bar@bar.mysql.r18.ru" <> Date: Mon, 17 Mar 2003 17:30:34 +0400 Subject: [PATCH] sql_show.cc: Bug fix 0 stayed for length here, now it is charset. --- sql/sql_show.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ }