mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
Merge paul@bk-internal.mysql.com:/home/bk/mysql-4.1
into ice.snake.net:/Volumes/ice2/MySQL/bk/mysql-4.1
This commit is contained in:
commit
d70d167c71
1 changed files with 11 additions and 2 deletions
|
@ -1180,9 +1180,18 @@ err:
|
|||
}
|
||||
|
||||
|
||||
/* Execute one command from socket (query or simple command) */
|
||||
|
||||
#ifndef EMBEDDED_LIBRARY
|
||||
|
||||
/*
|
||||
Read one command from socket and execute it (query or simple command).
|
||||
This function is called in loop from thread function.
|
||||
SYNOPSIS
|
||||
do_command()
|
||||
RETURN VALUE
|
||||
0 success
|
||||
1 request of thread shutdown (see dispatch_command() description)
|
||||
*/
|
||||
|
||||
bool do_command(THD *thd)
|
||||
{
|
||||
char *packet;
|
||||
|
|
Loading…
Reference in a new issue