diff options
author | monty@hundin.mysql.fi <> | 2002-06-17 15:07:46 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-06-17 15:07:46 +0300 |
commit | 4d7030606ee8bfbaeaec6968dc1d1a231ea42ece (patch) | |
tree | 1df510cd5dfdba5d6d53b7a3e90c432078cfc0e4 /sql/opt_range.cc | |
parent | b44b485491fe3b9355f918dd506acada2105263e (diff) | |
download | mariadb-git-4d7030606ee8bfbaeaec6968dc1d1a231ea42ece.tar.gz |
Fixed problem with innodb_log_group_home_dir and SHOW VARIABLES
Diffstat (limited to 'sql/opt_range.cc')
-rw-r--r-- | sql/opt_range.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/opt_range.cc b/sql/opt_range.cc index 6692a55c2ef..5a359cc4239 100644 --- a/sql/opt_range.cc +++ b/sql/opt_range.cc @@ -1291,7 +1291,8 @@ and_all_keys(SEL_ARG *key1,SEL_ARG *key2,uint clone_flag) } if (key1->type == SEL_ARG::MAYBE_KEY) { - key1->right=key1->left= &null_element; key1->next=key1->prev=0; + key1->right= key1->left= &null_element; + key1->next= key1->prev= 0; } for (next=key1->first(); next ; next=next->next) { |