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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
b6ce493d
Commit
b6ce493d
authored
Dec 02, 2020
by
Varun Gupta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing compile failure on kvm full-text
parent
e30a05f4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
sql/sql_type.cc
sql/sql_type.cc
+9
-2
No files found.
sql/sql_type.cc
View file @
b6ce493d
...
...
@@ -5999,11 +5999,18 @@ LEX_CSTRING Charset::collation_specific_name() const
for character sets and collations, so a collation
name not necessarily starts with the character set name.
*/
LEX_CSTRING
retval
;
size_t
csname_length
=
strlen
(
m_charset
->
csname
);
if
(
strncmp
(
m_charset
->
name
,
m_charset
->
csname
,
csname_length
))
return
{
NULL
,
0
};
{
retval
.
str
=
NULL
;
retval
.
length
=
0
;
return
retval
;
}
const
char
*
ptr
=
m_charset
->
name
+
csname_length
;
return
{
ptr
,
strlen
(
ptr
)
};
retval
.
str
=
ptr
;
retval
.
length
=
strlen
(
ptr
);
return
retval
;
}
...
...
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