diff options
author | unknown <cmiller@zippy.cornsilk.net> | 2007-05-04 17:38:29 -0400 |
---|---|---|
committer | unknown <cmiller@zippy.cornsilk.net> | 2007-05-04 17:38:29 -0400 |
commit | d64e63b36094aec1fc3c3132716d55322ac97dbf (patch) | |
tree | 906e4e11b66b9d2e611cec7b48b7b5136b6ee0aa /mysql-test/r/repair.result | |
parent | c004ad09444b8b3be367b6620aa4f0716684bdc3 (diff) | |
download | mariadb-git-d64e63b36094aec1fc3c3132716d55322ac97dbf.tar.gz |
Bug #27976: Misleading error message, 'Sort buffer to small'
The message is gramatically wrong, and factually wrong.
Change it to refer to the myisam_sort_buffer_size variable and change
"to" to "too".
myisam/sort.c:
Change error messages to be gramatically correct and to refer to the
correct variable.
mysql-test/r/repair.result:
Refer to the correct variable. Message changed.
Diffstat (limited to 'mysql-test/r/repair.result')
-rw-r--r-- | mysql-test/r/repair.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/repair.result b/mysql-test/r/repair.result index bf46d19777f..355a8c25434 100644 --- a/mysql-test/r/repair.result +++ b/mysql-test/r/repair.result @@ -77,7 +77,7 @@ INSERT INTO t1 VALUES SET myisam_repair_threads=2; REPAIR TABLE t1; Table Op Msg_type Msg_text -test.t1 repair error sort_buffer_size is to small +test.t1 repair error myisam_sort_buffer_size is too small test.t1 repair warning Number of rows changed from 0 to 157 test.t1 repair status OK SET myisam_repair_threads=@@global.myisam_repair_threads; |