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
e5d6b0af
Commit
e5d6b0af
authored
Mar 27, 2007
by
kostja@bodhi.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix warnings.
parent
787ea431
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
include/typelib.h
include/typelib.h
+1
-1
mysys/typelib.c
mysys/typelib.c
+1
-1
sql/item_func.cc
sql/item_func.cc
+1
-1
No files found.
include/typelib.h
View file @
e5d6b0af
...
...
@@ -26,7 +26,7 @@ typedef struct st_typelib { /* Different types saved here */
unsigned
int
*
type_lengths
;
}
TYPELIB
;
extern
int
find_type
(
c
onst
c
har
*
x
,
const
TYPELIB
*
typelib
,
extern
int
find_type
(
char
*
x
,
const
TYPELIB
*
typelib
,
unsigned
int
full_name
);
extern
void
make_type
(
char
*
to
,
unsigned
int
nr
,
TYPELIB
*
typelib
);
extern
const
char
*
get_type
(
TYPELIB
*
typelib
,
unsigned
int
nr
);
...
...
mysys/typelib.c
View file @
e5d6b0af
...
...
@@ -42,7 +42,7 @@
>0 Offset+1 in typelib for matched string
*/
int
find_type
(
c
onst
c
har
*
x
,
const
TYPELIB
*
typelib
,
uint
full_name
)
int
find_type
(
char
*
x
,
const
TYPELIB
*
typelib
,
uint
full_name
)
{
int
find
,
pos
,
findpos
;
reg1
my_string
i
;
...
...
sql/item_func.cc
View file @
e5d6b0af
...
...
@@ -5069,7 +5069,7 @@ Item_func_sp::init_result_field(THD *thd)
{
DBUG_ENTER
(
"Item_func_sp::init_result_field"
);
LEX_STRING
empty_name
=
{
STRING_WITH_LEN
(
""
)
};
LEX_STRING
empty_name
=
{
C_
STRING_WITH_LEN
(
""
)
};
TABLE_SHARE
*
share
;
...
...
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