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
2490731d
Commit
2490731d
authored
Mar 27, 2007
by
cmiller@zippy.cornsilk.net
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0-maint
into zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.0-maint
parents
d0ed1216
94c4c966
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
sql/sql_show.cc
sql/sql_show.cc
+9
-0
No files found.
sql/sql_show.cc
View file @
2490731d
...
...
@@ -3602,7 +3602,16 @@ TABLE *create_schema_table(THD *thd, TABLE_LIST *table_list)
DBUG_RETURN
(
0
);
}
break
;
case
MYSQL_TYPE_FLOAT
:
case
MYSQL_TYPE_DOUBLE
:
if
((
item
=
new
Item_float
(
fields_info
->
field_name
,
0.0
,
NOT_FIXED_DEC
,
fields_info
->
field_length
))
==
NULL
)
DBUG_RETURN
(
NULL
);
break
;
default:
/* Don't let unimplemented types pass through. Could be a grave error. */
DBUG_ASSERT
(
fields_info
->
field_type
==
MYSQL_TYPE_STRING
);
/* this should be changed when Item_empty_string is fixed(in 4.1) */
if
(
!
(
item
=
new
Item_empty_string
(
""
,
0
,
cs
)))
{
...
...
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