diff options
author | unknown <paul@ice.snake.net> | 2004-03-07 20:19:37 -0600 |
---|---|---|
committer | unknown <paul@ice.snake.net> | 2004-03-07 20:19:37 -0600 |
commit | 57c1a8eb38bc117fcfedc1ccb3212401b76906ca (patch) | |
tree | 63e1ef41c39996804a39495e77b2dd3cfc7f3831 /mysql-test/r/fulltext_var.result | |
parent | dd416373794aa717cc1720199d1b0031c835ead8 (diff) | |
download | mariadb-git-57c1a8eb38bc117fcfedc1ccb3212401b76906ca.tar.gz |
Make SHOW VARIABLES output really alphabetic.
Note: the patch removes an extra declaration of
the read_only variable. It also assumes that '_'
sorts before [a-z].
mysql-test/r/fulltext_var.result:
Fix test result to account for SHOW VARIABLES
output reordering.
sql/set_var.cc:
Make SHOW VARIABLES output really alphabetic.
Diffstat (limited to 'mysql-test/r/fulltext_var.result')
-rw-r--r-- | mysql-test/r/fulltext_var.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/fulltext_var.result b/mysql-test/r/fulltext_var.result index cdbbfc3f5ea..50afea2a500 100644 --- a/mysql-test/r/fulltext_var.result +++ b/mysql-test/r/fulltext_var.result @@ -2,8 +2,8 @@ drop table if exists t1; show variables like "ft\_%"; Variable_name Value ft_boolean_syntax + -><()~*:""&| -ft_min_word_len 4 ft_max_word_len 84 +ft_min_word_len 4 ft_query_expansion_limit 20 ft_stopword_file (built-in) create table t1 (b text not null); |