Fix "dosen't" for someone who mailed us. :)

parent 7d0072eb
monty@donna.mysql.com
sasha@mysql.sashanet.com
jcole@jcole.burghcom.com
......@@ -8962,7 +8962,7 @@ and @file{.frm} files to which the table corresponds.
In SQL statements, you can access tables from different databases
with the @code{db_name.tbl_name} syntax. Some SQL servers provide
the same functionality but call this @code{User space}.
@strong{MySQL} dosen't support tablespaces like in:
@strong{MySQL} doesn't support tablespaces like in:
@code{create table ralph.my_table...IN my_tablespace}.
@item
Some extra options to DBUG_PUSH:
O,logfile - As "o,logfile", but do a close and reopen each time anything
is written to the logfile. This is neaded when one expects
the program to crash anywhere, in which case one dosen't
O,logfile - As in "o,logfile", but do a close and reopen each time anything
is written to the logfile. This is needed when one expects
the program to crash anywhere, in which case one doesn't
(at least in MSDOS) get a full log-file.
If one wants a logfile with a ': in the filename, one can get it by
If one wants a logfile with a ':' in the filename, one can get it by
giving a double ':'. (As in "O,c::\tmp\log")
DBUG_DUMP("keyword",memory-position,length) writes a hexdump of the
......
......@@ -1401,7 +1401,7 @@ int extend;
}
else if (record_checksum != intern_record_checksum && info->s->state.keys)
{
print_error("Keypointers and records dosen't match");
print_error("Keypointers and records don't match");
error=1;
}
if (used+empty+del_length != info->s->state.data_file_length)
......
......@@ -1983,7 +1983,7 @@ mysql_data_seek(MYSQL_RES *result, my_ulonglong row)
/*************************************************************************
** put the row or field cursor one a position one got from mysql_row_tell()
** This dosen't restore any data. The next mysql_fetch_row or
** This doesn't restore any data. The next mysql_fetch_row or
** mysql_fetch_field will return the next row or field after the last used
*************************************************************************/
......
......@@ -421,7 +421,7 @@ sub create
$field =~ s/tinyint|smallint|mediumint|integer/int/i;
# mSQL can't handle different visual lengths
$field =~ s/int\(\d*\)/int/i;
# mSQL dosen't have float, change it to real
# mSQL doesn't have float, change it to real
$field =~ s/float(\(\d*,\d*\)){0,1}/real/i;
$field =~ s/double(\(\d*,\d*\)){0,1}/real/i;
# mSQL doesn't have blob, it has text instead
......
......@@ -171,7 +171,7 @@ static void check_unused(void)
}
if (count != 0)
{
DBUG_PRINT("error",("Unused_links dosen't match open_cache: diff: %d", /* purecov: inspected */
DBUG_PRINT("error",("Unused_links doesn't match open_cache: diff: %d", /* purecov: inspected */
count)); /* purecov: inspected */
}
}
......
......@@ -86,7 +86,7 @@ void print_cached_tables(void)
}
}
if (count != unused)
printf("Unused_links (%d) dosen't match open_cache: %d\n", count,unused);
printf("Unused_links (%d) doesn't match open_cache: %d\n", count,unused);
printf("\nCurrent refresh version: %ld\n",refresh_version);
if (hash_check(&open_cache))
printf("Error: File hash table is corrupted\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment