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
39ef6c55
Commit
39ef6c55
authored
Nov 21, 2009
by
Davi Arnaut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Post-merge fixes: fix typo and remove unused variables.
parent
25782585
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
6 deletions
+2
-6
client/mysqltest.cc
client/mysqltest.cc
+1
-4
configure.in
configure.in
+1
-1
vio/viosslfactories.c
vio/viosslfactories.c
+0
-1
No files found.
client/mysqltest.cc
View file @
39ef6c55
...
...
@@ -6827,10 +6827,8 @@ void run_query_stmt(MYSQL *mysql, struct st_command *command,
MYSQL_STMT
*
stmt
;
DYNAMIC_STRING
ds_prepare_warnings
;
DYNAMIC_STRING
ds_execute_warnings
;
ulonglong
affected_rows
;
DBUG_ENTER
(
"run_query_stmt"
);
DBUG_PRINT
(
"query"
,
(
"'%-.60s'"
,
query
));
LINT_INIT
(
affected_rows
);
/*
Init a new stmt if it's not already one created for this connection
...
...
@@ -6966,8 +6964,7 @@ void run_query_stmt(MYSQL *mysql, struct st_command *command,
warnings here
*/
{
ulonglong
affected_rows
;
LINT_INIT
(
affected_rows
);
ulonglong
UNINIT_VAR
(
affected_rows
);
if
(
!
disable_info
)
affected_rows
=
mysql_affected_rows
(
mysql
);
...
...
configure.in
View file @
39ef6c55
...
...
@@ -15,7 +15,7 @@ AM_CONFIG_HEADER([include/config.h:config.h.in])
# Request support for automake silent-rules if available.
# Default to verbose output. One can use the configure-time
# option --enable-silent-rules or make V=
1
to activate
# option --enable-silent-rules or make V=
0
to activate
# silent rules.
m4_ifdef
([
AM_SILENT_RULES],
[
AM_SILENT_RULES
([
no]
)])
...
...
vio/viosslfactories.c
View file @
39ef6c55
...
...
@@ -19,7 +19,6 @@
static
my_bool
ssl_algorithms_added
=
FALSE
;
static
my_bool
ssl_error_strings_loaded
=
FALSE
;
static
int
verify_depth
=
0
;
static
unsigned
char
dh512_p
[]
=
{
...
...
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