Below is the list of changes that have just been committed into a local
5.1 repository of alexi. When alexi does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.2390 06/05/04 02:58:11 aivanov@stripped +2 -0
Merge aivanov@stripped:/home/bk/mysql-5.1-new
into mysql.com:/home/alexi/dev/mysql-5.1-wl3148
sql/sql_show.cc
1.328 06/05/04 02:58:03 aivanov@stripped +0 -0
Auto merged
mysql-test/r/information_schema.result
1.117 06/05/04 02:58:03 aivanov@stripped +0 -0
Auto merged
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: aivanov
# Host: mysqld.localdomain
# Root: /home/alexi/dev/mysql-5.1-wl3148/RESYNC
--- 1.327/sql/sql_show.cc 2006-05-02 15:31:32 +04:00
+++ 1.328/sql/sql_show.cc 2006-05-04 02:58:03 +04:00
@@ -1553,15 +1553,11 @@
TABLE *table= tables->table;
CHARSET_INFO *cs= system_charset_info;
char *user;
- bool verbose;
- ulong max_query_length;
time_t now= time(0);
DBUG_ENTER("fill_process_list");
user= thd->security_ctx->master_access & PROCESS_ACL ?
NullS : thd->security_ctx->priv_user;
- verbose= thd->lex->verbose;
- max_query_length= PROCESS_LIST_WIDTH;
VOID(pthread_mutex_lock(&LOCK_thread_count));
@@ -1645,7 +1641,8 @@
if (tmp->query)
{
table->field[7]->store(tmp->query,
- min(max_query_length, tmp->query_length), cs);
+ min(PROCESS_LIST_INFO_WIDTH,
+ tmp->query_length), cs);
table->field[7]->set_notnull();
}
@@ -5165,9 +5162,9 @@
{"HOST", LIST_PROCESS_HOST_LEN, MYSQL_TYPE_STRING, 0, 0, "Host"},
{"DB", NAME_LEN, MYSQL_TYPE_STRING, 0, 1, "Db"},
{"COMMAND", 16, MYSQL_TYPE_STRING, 0, 0, "Command"},
- {"TIME", 4, MYSQL_TYPE_LONG, 0, 0, "Time"},
+ {"TIME", 7, MYSQL_TYPE_LONG, 0, 0, "Time"},
{"STATE", 30, MYSQL_TYPE_STRING, 0, 1, "State"},
- {"INFO", PROCESS_LIST_WIDTH, MYSQL_TYPE_STRING, 0, 1, "Info"},
+ {"INFO", PROCESS_LIST_INFO_WIDTH, MYSQL_TYPE_STRING, 0, 1, "Info"},
{0, 0, MYSQL_TYPE_STRING, 0, 0, 0}
};
--- 1.116/mysql-test/r/information_schema.result 2006-05-02 15:31:32 +04:00
+++ 1.117/mysql-test/r/information_schema.result 2006-05-04 02:58:03 +04:00
@@ -760,6 +760,7 @@
information_schema PARTITIONS SUBPARTITION_EXPRESSION
information_schema PARTITIONS PARTITION_DESCRIPTION
information_schema PLUGINS PLUGIN_DESCRIPTION
+information_schema PROCESSLIST INFO
information_schema ROUTINES ROUTINE_DEFINITION
information_schema ROUTINES SQL_MODE
information_schema TRIGGERS ACTION_CONDITION
| Thread |
|---|
| • bk commit into 5.1 tree (aivanov:1.2390) | Alex Ivanov Notebook | 3 May |