diff options
author | monty@hundin.mysql.fi <> | 2002-01-29 18:32:16 +0200 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-01-29 18:32:16 +0200 |
commit | be46289855f01c0d563671beb5135c22b7bad2aa (patch) | |
tree | dc6d00358536a5dca27f806f929ab5e25a000c92 /include/my_getopt.h | |
parent | e2a5c3e4cd331d9addc2342549e2c47ac7e9cb7a (diff) | |
download | mariadb-git-be46289855f01c0d563671beb5135c22b7bad2aa.tar.gz |
New error messages
Test of unsigned BIGINT values
Fixes for queries-per-hour
Cleanup of replication code (comments and portability fixes)
Make most of the binary log code 4G clean
Changed syntax for GRANT ... QUERIES PER HOUR
Diffstat (limited to 'include/my_getopt.h')
-rw-r--r-- | include/my_getopt.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/my_getopt.h b/include/my_getopt.h index 3132d6a1672..fef8aacd75a 100644 --- a/include/my_getopt.h +++ b/include/my_getopt.h @@ -35,10 +35,10 @@ struct my_option enum get_opt_var_type var_type; enum get_opt_arg_type arg_type; int id; /* unique id or short option */ - long long def_value; /* Default value */ - long long min_value; /* Min allowed value */ - long long max_value; /* Max allowed value */ - long long sub_size; /* Subtract this from given value */ + longlong def_value; /* Default value */ + longlong min_value; /* Min allowed value */ + longlong max_value; /* Max allowed value */ + longlong sub_size; /* Subtract this from given value */ long block_size; /* Value should be a mult. of this */ int app_type; /* To be used by an application */ my_bool changeable_var; /* If true, the option is a variable */ |