diff options
author | unknown <monty@mysql.com/narttu.mysql.fi> | 2007-01-30 13:52:26 +0200 |
---|---|---|
committer | unknown <monty@mysql.com/narttu.mysql.fi> | 2007-01-30 13:52:26 +0200 |
commit | 6e501e6548f15d3450ffb122ba1e683f40a4c917 (patch) | |
tree | 62763e5b2b8fc594a6350438d3424ff872a91c85 /sql-common | |
parent | 721e412854cc701b9a23c0a3ca2b84c936877bc2 (diff) | |
download | mariadb-git-6e501e6548f15d3450ffb122ba1e683f40a4c917.tar.gz |
Fixed problems detected by pushbuild
mysql-test/t/log_state.test:
Move disconnect last to avoid sporadic failures in test because 'Quit' command appeared in general log
plugin/daemon_example/daemon_example.c:
Define __attribute__ to fix compiler error with not gcc compilers
sql-common/client.c:
Fixed spelling error
sql/sql_parse.cc:
Added comment
Diffstat (limited to 'sql-common')
-rw-r--r-- | sql-common/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql-common/client.c b/sql-common/client.c index c6938f01579..e8301e2c3e0 100644 --- a/sql-common/client.c +++ b/sql-common/client.c @@ -682,7 +682,7 @@ cli_advanced_command(MYSQL *mysql, enum enum_server_command command, mysql->info=0; mysql->affected_rows= ~(my_ulonglong) 0; /* - We don't want to clear the protocol buffer on COM_QUIT, beacsue if + We don't want to clear the protocol buffer on COM_QUIT, because if the previous command was a shutdown command, we may have the response for the COM_QUIT already in the communication buffer */ |