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

Docs/manual.texi:
  Fix "dosen't"
dbug/monty.doc:
  Fix "dosen't"
isam/isamchk.c:
  Fix "dosen't"
libmysql/libmysql.c:
  Fix "dosen't"
sql-bench/server-cfg.sh:
  Fix "dosen't"
sql/sql_base.cc:
  Fix "dosen't"
sql/sql_test.cc:
  Fix "dosen't"
BitKeeper/etc/logging_ok:
  Logging to logging@openlogging.org accepted
This commit is contained in:
unknown 2000-08-16 04:17:40 -05:00
commit dd38ab7583
8 changed files with 11 additions and 10 deletions

View file

@ -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