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
3ba2916b
Commit
3ba2916b
authored
Feb 26, 2003
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sql_test.cc:
Less default_charset_info sql/sql_test.cc: Less default_charset_info
parent
5bc80ff8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
sql/sql_test.cc
sql/sql_test.cc
+3
-3
No files found.
sql/sql_test.cc
View file @
3ba2916b
...
...
@@ -52,7 +52,7 @@ print_where(COND *cond,const char *info)
if
(
cond
)
{
char
buff
[
256
];
String
str
(
buff
,(
uint32
)
sizeof
(
buff
),
default
_charset_info
);
String
str
(
buff
,(
uint32
)
sizeof
(
buff
),
system
_charset_info
);
str
.
length
(
0
);
cond
->
print
(
&
str
);
str
.
append
(
'\0'
);
...
...
@@ -116,8 +116,8 @@ void print_cached_tables(void)
void
TEST_filesort
(
SORT_FIELD
*
sortorder
,
uint
s_length
)
{
char
buff
[
256
],
buff2
[
256
];
String
str
(
buff
,
sizeof
(
buff
),
default
_charset_info
);
String
out
(
buff2
,
sizeof
(
buff2
),
default
_charset_info
);
String
str
(
buff
,
sizeof
(
buff
),
system
_charset_info
);
String
out
(
buff2
,
sizeof
(
buff2
),
system
_charset_info
);
const
char
*
sep
;
DBUG_ENTER
(
"TEST_filesort"
);
...
...
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