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
71799916
Commit
71799916
authored
Nov 16, 2007
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove the unused function innobase_convert_from_filename() that was
inadvertently added in r590.
parent
96889ca9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
27 deletions
+0
-27
dict/dict0dict.c
dict/dict0dict.c
+0
-10
handler/ha_innodb.cc
handler/ha_innodb.cc
+0
-17
No files found.
dict/dict0dict.c
View file @
71799916
...
...
@@ -84,16 +84,6 @@ innobase_convert_from_id(
ulint
len
);
/* in: length of 'to', in bytes;
should be at least 3 * strlen(to) + 1 */
/**********************************************************************
Removes the filename encoding of a table or database name.
NOTE: the prototype of this function is copied from ha_innodb.cc! If you change
this function, you MUST change also the prototype here! */
extern
void
innobase_convert_from_filename
(
/*===========================*/
char
*
s
);
/* in: identifier; out: decoded identifier */
/**********************************************************************
Compares NUL-terminated UTF-8 strings case insensitively.
NOTE: the prototype of this function is copied from ha_innodb.cc! If you change
...
...
handler/ha_innodb.cc
View file @
71799916
...
...
@@ -810,23 +810,6 @@ innobase_convert_from_id(
system_charset_info
,
to
,
(
uint
)
len
,
&
errors
);
}
/**********************************************************************
Removes the filename encoding of a table or database name.
NOTE that the exact prototype of this function has to be in
/innobase/dict/dict0dict.c! */
extern
"C"
void
innobase_convert_from_filename
(
/*===========================*/
char
*
s
)
/* in: identifier; out: decoded identifier */
{
uint
errors
;
strconvert
(
&
my_charset_filename
,
s
,
system_charset_info
,
s
,
strlen
(
s
),
&
errors
);
}
/**********************************************************************
Compares NUL-terminated UTF-8 strings case insensitively.
...
...
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