Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
b1480cc0
Commit
b1480cc0
authored
May 31, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge sgluhov@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/gluh/MySQL/Merge/mysql-5.0
parents
ad7eebda
97cef22b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
mysql-test/r/information_schema.result
mysql-test/r/information_schema.result
+2
-2
sql/sql_show.cc
sql/sql_show.cc
+3
-2
No files found.
mysql-test/r/information_schema.result
View file @
b1480cc0
...
...
@@ -470,7 +470,7 @@ s1
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 @@ character_sets CREATE TEMPORARY TABLE `character_sets` (
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 '',
...
...
sql/sql_show.cc
View file @
b1480cc0
...
...
@@ -396,7 +396,8 @@ mysqld_show_create(THD *thd, TABLE_LIST *table_list)
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 @@ store_create_info(THD *thd, TABLE_LIST *table_list, String *packet)
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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment