List:Commits« Previous MessageNext Message »
From:gluh Date:February 6 2006 1:05pm
Subject:bk commit into 5.1 tree (gluh:1.2132) BUG#16695
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of gluh. When gluh does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet
  1.2132 06/02/06 16:05:47 gluh@stripped +1 -0
  Bug#16591 Partitions: crash using information_schema.partitions
  Bug#16695 Reading I_S.PARTITIONS with pre-5.1.6 partitioned tables crashes server
    issue a warning in case of error during table opening

  sql/sql_show.cc
    1.300 06/02/06 16:05:41 gluh@stripped +5 -5
    Bug#16591 Partitions: crash using information_schema.partitions
    Bug#16695 Reading I_S.PARTITIONS with pre-5.1.6 partitioned tables crashes server
      issue a warning in case of error during table opening

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	gluh
# Host:	eagle.intranet.mysql.r18.ru
# Root:	/home/gluh/MySQL/Bugs/5.1.16591

--- 1.299/sql/sql_show.cc	Fri Feb  3 00:20:19 2006
+++ 1.300/sql/sql_show.cc	Mon Feb  6 16:05:41 2006
@@ -3601,23 +3601,23 @@ static int get_schema_partitions_record(
   String tmp_str;
   TIME time;
   TABLE *show_table= tables->table;
-  handler *file= show_table->file;
+  handler *file;
 #ifdef WITH_PARTITION_STORAGE_ENGINE
-  partition_info *part_info= show_table->part_info;
+  partition_info *part_info;
 #endif
   DBUG_ENTER("get_schema_partitions_record");
 
   if (res)
   {
-#ifdef WITH_PARTITION_STORAGE_ENGINE
-    if (part_info)
+    if (!tables->view)
       push_warning(thd, MYSQL_ERROR::WARN_LEVEL_WARN,
                    thd->net.last_errno, thd->net.last_error);
-#endif
     thd->clear_error();
     DBUG_RETURN(0);
   }
+  file= show_table->file;
 #ifdef WITH_PARTITION_STORAGE_ENGINE
+  part_info= show_table->part_info;
   if (part_info)
   {
     partition_element *part_elem;
Thread
bk commit into 5.1 tree (gluh:1.2132) BUG#16695gluh6 Feb