diff options
author | unknown <monty@hundin.mysql.fi> | 2001-09-22 17:40:59 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-09-22 17:40:59 +0300 |
commit | 5e0851e1b37debb59dbe184fcc3485470872ac64 (patch) | |
tree | 75eeebf6f1ad1178e0336276e6a73857a6c5b8b8 /sql | |
parent | d037709b178c34222400deb78727d6f2cf1e5478 (diff) | |
download | mariadb-git-5e0851e1b37debb59dbe184fcc3485470872ac64.tar.gz |
Portability fix
sql/gen_lex_hash.cc:
Smaller array
Diffstat (limited to 'sql')
-rw-r--r-- | sql/gen_lex_hash.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sql/gen_lex_hash.cc b/sql/gen_lex_hash.cc index cfd859acf06..6530e5dd4cf 100644 --- a/sql/gen_lex_hash.cc +++ b/sql/gen_lex_hash.cc @@ -26,7 +26,8 @@ #include "mysql_version.h" #include "lex.h" -bool opt_search=0,opt_verbose=0; +bool opt_search=0; +int opt_verbose=0; ulong opt_count=100000; #define max_allowed_array 8000 // Don't generate bigger arrays than this @@ -473,7 +474,7 @@ int main(int argc,char **argv) MY_INIT(argv[0]); - start_value=4198729L; best_t1=6245075L; best_t2=3686256L; best_type=4; /* mode=5839 add=1 type: 0 */ + start_value=1060872L; best_t1=7930739L; best_t2=4311642L; best_type=3; /* mode=5333 add=6 type: 0 */ if (get_options(argc,(char **) argv)) exit(1); |