List:Commits« Previous MessageNext Message »
From:Alexey Kopytov Date:December 15 2006 11:23am
Subject:bk commit into 5.1 tree (kaa:1.2367)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of kaa. When kaa 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@stripped, 2006-12-15 13:23:05+03:00, kaa@stripped +5 -0
  Merge polly.local:/tmp/maint/bug24117/my51-bug24117
  into  polly.local:/home/kaa/src/maint/mysql-5.1-maint
  MERGE: 1.2303.170.1

  mysql-test/r/sp.result@stripped, 2006-12-15 13:23:00+03:00, kaa@stripped +0 -0
    Auto merged
    MERGE: 1.236.1.1

  mysql-test/t/sp.test@stripped, 2006-12-15 13:23:01+03:00, kaa@stripped +0 -0
    Auto merged
    MERGE: 1.207.1.1

  mysys/typelib.c@stripped, 2006-12-15 13:23:01+03:00, kaa@stripped +0 -0
    Auto merged
    MERGE: 1.13.1.1

  sql/field.cc@stripped, 2006-12-15 13:23:01+03:00, kaa@stripped +0 -0
    Auto merged
    MERGE: 1.352.3.1

  sql/field.h@stripped, 2006-12-15 13:23:01+03:00, kaa@stripped +0 -0
    Auto merged
    MERGE: 1.190.6.1

# 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:	kaa
# Host:	polly.local
# Root:	/home/kaa/src/maint/mysql-5.1-maint/RESYNC

--- 1.14/mysys/typelib.c	2006-12-15 13:23:12 +03:00
+++ 1.15/mysys/typelib.c	2006-12-15 13:23:12 +03:00
@@ -119,3 +119,54 @@ const char *get_type(TYPELIB *typelib, u
     return(typelib->type_names[nr]);
   return "?";
 }
+
+
+/*
+  Create a copy of a specified TYPELIB structure.
+
+  SYNOPSIS
+    copy_typelib()
+    root	pointer to a MEM_ROOT object for allocations
+    from	pointer to a source TYPELIB structure
+
+  RETURN
+    pointer to the new TYPELIB structure on successful copy, or
+    NULL otherwise
+*/
+
+TYPELIB *copy_typelib(MEM_ROOT *root, TYPELIB *from)
+{
+  TYPELIB *to;
+  uint i;
+
+  if (!from)
+    return NULL;
+
+  if (!(to= (TYPELIB*) alloc_root(root, sizeof(TYPELIB))))
+    return NULL;
+
+  if (!(to->type_names= (const char **)
+        alloc_root(root, (sizeof(char *) + sizeof(int)) * (from->count + 1))))
+    return NULL;
+  to->type_lengths= (unsigned int *)(to->type_names + from->count + 1);
+  to->count= from->count;
+  if (from->name)
+  {
+    if (!(to->name= strdup_root(root, from->name)))
+      return NULL;
+  }
+  else
+    to->name= NULL;
+
+  for (i= 0; i < from->count; i++)
+  {
+    if (!(to->type_names[i]= strmake_root(root, from->type_names[i],
+                                          from->type_lengths[i])))
+      return NULL;
+    to->type_lengths[i]= from->type_lengths[i];
+  }
+  to->type_names[to->count]= NULL;
+  to->type_lengths[to->count]= 0;
+
+  return to;
+}

--- 1.359/sql/field.cc	2006-12-15 13:23:12 +03:00
+++ 1.360/sql/field.cc	2006-12-15 13:23:12 +03:00
@@ -8029,6 +8029,16 @@ void Field_enum::sql_type(String &res) c
 }
 
 
+Field *Field_enum::new_field(MEM_ROOT *root, struct st_table *new_table,
+                             bool keep_type)
+{
+  Field_enum *res= (Field_enum*) Field::new_field(root, new_table, keep_type);
+  if (res)
+    res->typelib= copy_typelib(root, typelib);
+  return res;
+}
+
+
 /*
    set type.
    This is a string which can have a collection of different values.

--- 1.196/sql/field.h	2006-12-15 13:23:12 +03:00
+++ 1.197/sql/field.h	2006-12-15 13:23:12 +03:00
@@ -1354,6 +1354,7 @@ public:
   {
       flags|=ENUM_FLAG;
   }
+  Field *new_field(MEM_ROOT *root, struct st_table *new_table, bool keep_type);
   enum_field_types type() const { return FIELD_TYPE_STRING; }
   enum Item_result cmp_type () const { return INT_RESULT; }
   enum Item_result cast_to_int_type () const { return INT_RESULT; }

--- 1.239/mysql-test/r/sp.result	2006-12-15 13:23:12 +03:00
+++ 1.240/mysql-test/r/sp.result	2006-12-15 13:23:12 +03:00
@@ -5816,4 +5816,20 @@ DROP TABLE bug23760, bug23760_log|
 DROP PROCEDURE bug23760_update_log|
 DROP PROCEDURE bug23760_test_row_count|
 DROP FUNCTION bug23760_rc_test|
+DROP PROCEDURE IF EXISTS bug24117|
+DROP TABLE IF EXISTS t3|
+CREATE TABLE t3(c1 ENUM('abc'))|
+INSERT INTO t3 VALUES('abc')|
+CREATE PROCEDURE bug24117()
+BEGIN
+DECLARE t3c1 ENUM('abc');
+DECLARE mycursor CURSOR FOR SELECT c1 FROM t3;
+OPEN mycursor;
+FLUSH TABLES;
+FETCH mycursor INTO t3c1;
+CLOSE mycursor;
+END|
+CALL bug24117()|
+DROP PROCEDURE bug24117|
+DROP TABLE t3|
 drop table t1,t2;

--- 1.208/mysql-test/t/sp.test	2006-12-15 13:23:12 +03:00
+++ 1.209/mysql-test/t/sp.test	2006-12-15 13:23:12 +03:00
@@ -6779,6 +6779,30 @@ DROP PROCEDURE bug23760_test_row_count|
 DROP FUNCTION bug23760_rc_test|
 
 #
+# BUG#24117: server crash on a FETCH with a cursor on a table which is not in
+#            the table cache
+#
+
+--disable_warnings
+DROP PROCEDURE IF EXISTS bug24117|
+DROP TABLE IF EXISTS t3|
+--enable_warnings
+CREATE TABLE t3(c1 ENUM('abc'))|
+INSERT INTO t3 VALUES('abc')|
+CREATE PROCEDURE bug24117()
+BEGIN
+  DECLARE t3c1 ENUM('abc');
+  DECLARE mycursor CURSOR FOR SELECT c1 FROM t3;
+  OPEN mycursor;
+  FLUSH TABLES;
+  FETCH mycursor INTO t3c1;
+  CLOSE mycursor;
+END|
+CALL bug24117()|
+DROP PROCEDURE bug24117|
+DROP TABLE t3|
+
+#
 # NOTE: The delimiter is `|`, and not `;`. It is changed to `;`
 #       at the end of the file!
 #
Thread
bk commit into 5.1 tree (kaa:1.2367)Alexey Kopytov15 Dec