Skip to content

Commit 008ee86

Browse files
committed
Merge branch '10.2' into 10.3
2 parents 670c9a3 + c9b9eb3 commit 008ee86

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+1018
-523
lines changed

client/mysql.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3211,7 +3211,7 @@ static int
32113211
com_go(String *buffer,char *line __attribute__((unused)))
32123212
{
32133213
char buff[200]; /* about 110 chars used so far */
3214-
char time_buff[53+3+1]; /* time max + space&parens + NUL */
3214+
char time_buff[53+3+1]; /* time max + space & parens + NUL */
32153215
MYSQL_RES *result;
32163216
ulonglong timer;
32173217
ulong warnings= 0;
@@ -3231,7 +3231,7 @@ com_go(String *buffer,char *line __attribute__((unused)))
32313231

32323232
if (buffer->is_empty())
32333233
{
3234-
if (status.batch) // Ignore empty quries
3234+
if (status.batch) // Ignore empty queries.
32353235
return 0;
32363236
return put_info("No query specified\n",INFO_ERROR);
32373237

@@ -3296,7 +3296,7 @@ com_go(String *buffer,char *line __attribute__((unused)))
32963296
else
32973297
time_buff[0]= '\0';
32983298

3299-
/* Every branch must truncate buff . */
3299+
/* Every branch must truncate buff. */
33003300
if (result)
33013301
{
33023302
if (!mysql_num_rows(result) && ! quick && !column_types_flag)

0 commit comments

Comments
 (0)