summaryrefslogtreecommitdiff
path: root/sql-bench
diff options
context:
space:
mode:
authorunknown <jcole@jcole.burghcom.com>2000-08-16 04:17:40 -0500
committerunknown <jcole@jcole.burghcom.com>2000-08-16 04:17:40 -0500
commitdd38ab7583fb0f850a4be59c1f45261bc1ecf318 (patch)
tree7ad9b8d424c187f5ba17b2254da1700d55874094 /sql-bench
parent379b2695079d0b519a4cb9949285c7515f7ccfa8 (diff)
downloadmariadb-git-dd38ab7583fb0f850a4be59c1f45261bc1ecf318.tar.gz
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
Diffstat (limited to 'sql-bench')
-rwxr-xr-xsql-bench/server-cfg.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql-bench/server-cfg.sh b/sql-bench/server-cfg.sh
index a074efda4d9..2ecd5104adb 100755
--- a/sql-bench/server-cfg.sh
+++ b/sql-bench/server-cfg.sh
@@ -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