diff options
author | unknown <serg@janus.mylan> | 2007-12-21 12:02:49 +0100 |
---|---|---|
committer | unknown <serg@janus.mylan> | 2007-12-21 12:02:49 +0100 |
commit | cd7b1fd9eb325f7af88f825cf1f00a15d005645c (patch) | |
tree | 3c74578aa909d95623b91185f53e205397c627e9 | |
parent | f2953330d34c1b3c10626b9609b3eb07051f135a (diff) | |
parent | f2716fa071e577142a27b186e841b406f02f3121 (diff) | |
download | mariadb-git-cd7b1fd9eb325f7af88f825cf1f00a15d005645c.tar.gz |
Merge janus.mylan:/usr/home/serg/Abk/mysql-5.0
into janus.mylan:/usr/home/serg/Abk/mysql-5.1
sql/set_var.cc:
Auto merged
-rw-r--r-- | sql/set_var.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/set_var.cc b/sql/set_var.cc index e74d3b4f0da..7dce5bf1a46 100644 --- a/sql/set_var.cc +++ b/sql/set_var.cc @@ -1296,8 +1296,8 @@ void sys_var_thd_ulong::set_default(THD *thd, enum_var_type type) bool not_used; /* We will not come here if option_limits is not set */ global_system_variables.*offset= - (ulonglong) getopt_ull_limit_value((ulong) option_limits->def_value, - option_limits, ¬_used); + (ulong) getopt_ull_limit_value((ulong) option_limits->def_value, + option_limits, ¬_used); } else thd->variables.*offset= global_system_variables.*offset; |