[prev in list] [next in list] [prev in thread] [next in thread] 

List:       mysql-internals
Subject:    bk commit into 5.0 tree (gluh:1.1938) BUG#10059
From:       gluh () mysql ! com
Date:       2005-05-31 8:15:29
Message-ID: 200505310815.j4V8FT57001535 () eagle ! intranet ! mysql ! r18 ! ru
[Download RAW message or body]

Below is the list of changes that have just been committed into a local
5.0 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.1938 05/05/31 13:15:23 gluh@eagle.intranet.mysql.r18.ru +2 -0
  Fix for bug#10059: SHOW TABLE STATUS FROM `information_schema`; reports uppercase table names
      information schema table names are always upper case table names

  sql/sql_show.cc
    1.248 05/05/31 13:15:18 gluh@mysql.com +3 -2
    Fix for bug#10059: SHOW TABLE STATUS FROM `information_schema`; reports uppercase table names
        information schema table names are always upper case table names

  mysql-test/r/information_schema.result
    1.53 05/05/31 13:15:18 gluh@mysql.com +2 -2
    Fix for bug#10059: SHOW TABLE STATUS FROM `information_schema`; reports uppercase table names
        information schema table names are always upper case table names

# 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/Merge/mysql-5.0

--- 1.247/sql/sql_show.cc	Fri May 27 00:01:48 2005
+++ 1.248/sql/sql_show.cc	Tue May 31 13:15:18 2005
@@ -396,7 +396,8 @@
   else
   {
     if (table_list->schema_table)
-      protocol->store(table_list->schema_table_name, system_charset_info);
+      protocol->store(table_list->schema_table->table_name,
+                      system_charset_info);
     else
       protocol->store(table->alias, system_charset_info);
     if (store_create_info(thd, table_list, &buffer))
@@ -757,7 +758,7 @@
   else
     packet->append("CREATE TABLE ", 13);
   if (table_list->schema_table)
-    alias= table_list->schema_table_name;
+    alias= table_list->schema_table->table_name;
   else
     alias= (lower_case_table_names == 2 ? table->alias :
             share->table_name);

--- 1.52/mysql-test/r/information_schema.result	Fri May 20 17:38:15 2005
+++ 1.53/mysql-test/r/information_schema.result	Tue May 31 13:15:18 2005
@@ -470,7 +470,7 @@
 drop table t1;
 SHOW CREATE TABLE INFORMATION_SCHEMA.character_sets;
 Table	Create Table
-character_sets	CREATE TEMPORARY TABLE `character_sets` (
+CHARACTER_SETS	CREATE TEMPORARY TABLE `CHARACTER_SETS` (
   `CHARACTER_SET_NAME` varchar(64) NOT NULL default '',
   `DEFAULT_COLLATE_NAME` varchar(64) NOT NULL default '',
   `DESCRIPTION` varchar(60) NOT NULL default '',
@@ -479,7 +479,7 @@
 set names latin2;
 SHOW CREATE TABLE INFORMATION_SCHEMA.character_sets;
 Table	Create Table
-character_sets	CREATE TEMPORARY TABLE `character_sets` (
+CHARACTER_SETS	CREATE TEMPORARY TABLE `CHARACTER_SETS` (
   `CHARACTER_SET_NAME` varchar(64) NOT NULL default '',
   `DEFAULT_COLLATE_NAME` varchar(64) NOT NULL default '',
   `DESCRIPTION` varchar(60) NOT NULL default '',

-- 
MySQL Internals Mailing List
For list archives: http://lists.mysql.com/internals
To unsubscribe:    http://lists.mysql.com/internals?unsub=mysql-internals@progressive-comp.com

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic