Commit 3eaa2494 authored by jcole@jcole.burghcom.com's avatar jcole@jcole.burghcom.com
Browse files

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

parent 7d0072eb
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
monty@donna.mysql.com
sasha@mysql.sashanet.com
jcole@jcole.burghcom.com
+1 −1
Original line number Diff line number Diff line
@@ -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
+4 −4
Original line number Diff line number Diff line
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
+1 −1
Original line number Diff line number Diff line
@@ -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)
+1 −1
Original line number Diff line number Diff line
@@ -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
*************************************************************************/

Loading