Commit 8487a67b authored by unknown's avatar unknown

Merge mysql.com:/home/cps/mysql/trees/mysql-4.1

into mysql.com:/home/cps/mysql/trees/mysql-5.0


mysys/default.c:
  Auto merged
sql/ha_innodb.cc:
  Auto merged
parents 11b666fb 82231c24
...@@ -513,15 +513,16 @@ static int search_default_file_with_ext(Process_option_func opt_handler, ...@@ -513,15 +513,16 @@ static int search_default_file_with_ext(Process_option_func opt_handler,
/* trim trailing whitespace from directory name */ /* trim trailing whitespace from directory name */
end= ptr + strlen(ptr) - 1; end= ptr + strlen(ptr) - 1;
/* /* fgets() stores the newline character in the buffer */
This would work fine even if no whitespaces are met if ((end[0] == '\n') || (end[0] == '\r') ||
since fgets() stores the newline character in the buffer my_isspace(&my_charset_latin1, end[0]))
*/ {
for (; my_isspace(&my_charset_latin1, *(end - 1)); end--) for (; my_isspace(&my_charset_latin1, *(end - 1)); end--)
{} {}
end[0]= 0; end[0]= 0;
}
/* print error msg if there is nothing after !inludedir directive */ /* print error msg if there is nothing after !includedir directive */
if (end == ptr) if (end == ptr)
{ {
fprintf(stderr, fprintf(stderr,
...@@ -539,7 +540,7 @@ static int search_default_file_with_ext(Process_option_func opt_handler, ...@@ -539,7 +540,7 @@ static int search_default_file_with_ext(Process_option_func opt_handler,
search_file= search_dir->dir_entry + i; search_file= search_dir->dir_entry + i;
ext= fn_ext(search_file->name); ext= fn_ext(search_file->name);
/* check extenstion */ /* check extension */
for (tmp_ext= (char**) f_extensions; *tmp_ext; *tmp_ext++) for (tmp_ext= (char**) f_extensions; *tmp_ext; *tmp_ext++)
{ {
if (!strcmp(ext, *tmp_ext)) if (!strcmp(ext, *tmp_ext))
...@@ -587,6 +588,14 @@ static int search_default_file_with_ext(Process_option_func opt_handler, ...@@ -587,6 +588,14 @@ static int search_default_file_with_ext(Process_option_func opt_handler,
continue; continue;
} }
else
if (recursion_level >= max_recursion_level)
{
fprintf(stderr,
"warning: skipping !include directive as maximum include"
"recursion level was reached in file %s at line %d\n",
name, line);
}
if (*ptr == '[') /* Group name */ if (*ptr == '[') /* Group name */
{ {
......
...@@ -6136,7 +6136,8 @@ ha_innobase::store_lock( ...@@ -6136,7 +6136,8 @@ ha_innobase::store_lock(
(lock_type == TL_READ_HIGH_PRIORITY && thd->in_lock_tables) || (lock_type == TL_READ_HIGH_PRIORITY && thd->in_lock_tables) ||
lock_type == TL_READ_WITH_SHARED_LOCKS || lock_type == TL_READ_WITH_SHARED_LOCKS ||
lock_type == TL_READ_NO_INSERT || lock_type == TL_READ_NO_INSERT ||
thd->lex->sql_command != SQLCOM_SELECT) { (thd->lex->sql_command != SQLCOM_SELECT
&& lock_type != TL_IGNORE)) {
/* The OR cases above are in this order: /* The OR cases above are in this order:
1) MySQL is doing LOCK TABLES ... READ LOCAL, or 1) MySQL is doing LOCK TABLES ... READ LOCAL, or
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment