Browse Source

Merge siva.hindu.god:/home/tsmith/m/bk/maint/mar05/50

into  siva.hindu.god:/home/tsmith/m/bk/maint/mar05/51


libmysql/libmysql.c:
  Auto merged
sql/sql_class.cc:
  Auto merged
pull/374/head
unknown 19 years ago
parent
commit
c2f48ff145
  1. 2
      libmysql/libmysql.c
  2. 2
      sql/sql_class.cc

2
libmysql/libmysql.c

@ -1361,7 +1361,7 @@ mysql_stat(MYSQL *mysql)
{
DBUG_ENTER("mysql_stat");
if (simple_command(mysql,COM_STATISTICS,0,0,0))
return mysql->net.last_error;
DBUG_RETURN(mysql->net.last_error);
DBUG_RETURN((*mysql->methods->read_statistics)(mysql));
}

2
sql/sql_class.cc

@ -261,7 +261,9 @@ THD::THD()
#endif
client_capabilities= 0; // minimalistic client
net.last_error[0]=0; // If error on boot
#ifdef HAVE_QUERY_CACHE
query_cache_init_query(&net); // If error on boot
#endif
ull=0;
system_thread= NON_SYSTEM_THREAD;
cleanup_done= abort_on_warning= no_warnings_for_error= 0;

Loading…
Cancel
Save