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
a2c6d61d
Commit
a2c6d61d
authored
Dec 15, 2023
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
don't use dynstr_append() in mysqltest.cc
followup for
ad796aaa
parent
c5d7036e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
12 deletions
+16
-12
client/mysqltest.cc
client/mysqltest.cc
+16
-12
No files found.
client/mysqltest.cc
View file @
a2c6d61d
...
...
@@ -91,6 +91,8 @@ static my_bool non_blocking_api_enabled= 0;
#define CLOSED_CONNECTION "-closed_connection-"
#define dynstr_append DO_NO_USE
#ifndef HAVE_SETENV
static
int
setenv
(
const
char
*
name
,
const
char
*
value
,
int
overwrite
);
#endif
...
...
@@ -1864,7 +1866,7 @@ static int run_tool(const char *tool_path, DYNAMIC_STRING *ds_res, ...)
if
(
strncmp
(
arg
,
"--"
,
2
)
==
0
)
dynstr_append_os_quoted
(
&
ds_cmdline
,
arg
,
NullS
);
else
dynstr_append
(
&
ds_cmdline
,
arg
);
dynstr_append
_mem
(
&
ds_cmdline
,
arg
,
strlen
(
arg
)
);
dynstr_append_mem
(
&
ds_cmdline
,
STRING_WITH_LEN
(
" "
));
}
...
...
@@ -2021,11 +2023,11 @@ void show_diff(DYNAMIC_STRING* ds,
dynstr_append_mem
(
&
ds_tmp
,
message
,
sizeof
(
message
));
dynstr_append_mem
(
&
ds_tmp
,
STRING_WITH_LEN
(
" --- "
));
dynstr_append
(
&
ds_tmp
,
filename1
);
dynstr_append
_mem
(
&
ds_tmp
,
filename1
,
strlen
(
filename1
)
);
dynstr_append_mem
(
&
ds_tmp
,
STRING_WITH_LEN
(
" >>>
\n
"
));
cat_file
(
&
ds_tmp
,
filename1
);
dynstr_append_mem
(
&
ds_tmp
,
STRING_WITH_LEN
(
"<<<
\n
--- "
));
dynstr_append
(
&
ds_tmp
,
filename1
);
dynstr_append
_mem
(
&
ds_tmp
,
filename1
,
strlen
(
filename1
)
);
dynstr_append_mem
(
&
ds_tmp
,
STRING_WITH_LEN
(
" >>>
\n
"
));
cat_file
(
&
ds_tmp
,
filename2
);
dynstr_append_mem
(
&
ds_tmp
,
STRING_WITH_LEN
(
"<<<<
\n
"
));
...
...
@@ -3276,13 +3278,15 @@ static int replace(DYNAMIC_STRING *ds_str,
{
DYNAMIC_STRING
ds_tmp
;
const
char
*
start
=
strstr
(
ds_str
->
str
,
search_str
);
size_t
prefixlen
=
start
-
ds_str
->
str
;
if
(
!
start
)
return
1
;
init_dynamic_string
(
&
ds_tmp
,
""
,
ds_str
->
length
+
replace_len
,
256
);
dynstr_append_mem
(
&
ds_tmp
,
ds_str
->
str
,
start
-
ds_str
->
str
);
dynstr_append_mem
(
&
ds_tmp
,
ds_str
->
str
,
prefixlen
);
dynstr_append_mem
(
&
ds_tmp
,
replace_str
,
replace_len
);
dynstr_append
(
&
ds_tmp
,
start
+
search_len
);
dynstr_append_mem
(
&
ds_tmp
,
start
+
search_len
,
ds_str
->
length
-
prefixlen
-
search_len
);
dynstr_set
(
ds_str
,
ds_tmp
.
str
);
dynstr_free
(
&
ds_tmp
);
return
0
;
...
...
@@ -3737,7 +3741,7 @@ void do_remove_files_wildcard(struct st_command *command)
wild_compare
(
file
->
name
,
ds_wild
.
str
,
0
))
continue
;
ds_file_to_remove
.
length
=
directory_length
;
dynstr_append
(
&
ds_file_to_remove
,
file
->
name
);
dynstr_append
_mem
(
&
ds_file_to_remove
,
file
->
name
,
strlen
(
file
->
name
)
);
DBUG_PRINT
(
"info"
,
(
"removing file: %s"
,
ds_file_to_remove
.
str
));
if
((
error
=
(
my_delete
(
ds_file_to_remove
.
str
,
MYF
(
MY_WME
))
!=
0
)))
sys_errno
=
my_errno
;
...
...
@@ -7575,7 +7579,7 @@ void append_field(DYNAMIC_STRING *ds, uint col_idx, MYSQL_FIELD* field,
}
else
{
dynstr_append
(
ds
,
field
->
name
);
dynstr_append
_mem
(
ds
,
field
->
name
,
strlen
(
field
->
name
)
);
dynstr_append_mem
(
ds
,
"
\t
"
,
1
);
replace_dynstr_append_mem
(
ds
,
val
,
len
);
dynstr_append_mem
(
ds
,
"
\n
"
,
1
);
...
...
@@ -7736,12 +7740,12 @@ void append_info(DYNAMIC_STRING *ds, ulonglong affected_rows,
const
char
*
info
)
{
char
buf
[
40
],
buff2
[
21
];
sprintf
(
buf
,
"affected rows: %s
\n
"
,
llstr
(
affected_rows
,
buff2
));
dynstr_append
(
ds
,
buf
);
s
ize_t
len
=
s
printf
(
buf
,
"affected rows: %s
\n
"
,
llstr
(
affected_rows
,
buff2
));
dynstr_append
_mem
(
ds
,
buf
,
len
);
if
(
info
)
{
dynstr_append_mem
(
ds
,
STRING_WITH_LEN
(
"info: "
));
dynstr_append
(
ds
,
info
);
dynstr_append
_mem
(
ds
,
info
,
strlen
(
info
)
);
dynstr_append_mem
(
ds
,
STRING_WITH_LEN
(
"
\n
"
));
}
}
...
...
@@ -9613,7 +9617,7 @@ void mark_progress(struct st_command* command __attribute__((unused)),
dynstr_append_mem
(
&
ds_progress
,
"
\t
"
,
1
);
/* Filename */
dynstr_append
(
&
ds_progress
,
cur_file
->
file_name
);
dynstr_append
_mem
(
&
ds_progress
,
cur_file
->
file_name
,
strlen
(
cur_file
->
file_name
)
);
dynstr_append_mem
(
&
ds_progress
,
":"
,
1
);
/* Line in file */
...
...
@@ -11895,7 +11899,7 @@ void dynstr_append_sorted(DYNAMIC_STRING* ds, DYNAMIC_STRING *ds_input,
for
(
i
=
0
;
i
<
lines
.
elements
;
i
++
)
{
const
char
**
line
=
dynamic_element
(
&
lines
,
i
,
const
char
**
);
dynstr_append
(
ds
,
*
line
);
dynstr_append
_mem
(
ds
,
*
line
,
strlen
(
*
line
)
);
dynstr_append_mem
(
ds
,
STRING_WITH_LEN
(
"
\n
"
));
}
...
...
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