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
7189f09a
Commit
7189f09a
authored
Nov 23, 2011
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
compiler warnings/errors
parent
feba65a5
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
11 deletions
+14
-11
client/mysqldump.c
client/mysqldump.c
+1
-1
client/mysqltest.cc
client/mysqltest.cc
+2
-2
mysql-test/suite/sys_vars/t/debug_binlog_fsync_sleep_basic.test
...test/suite/sys_vars/t/debug_binlog_fsync_sleep_basic.test
+2
-0
mysys/CMakeLists.txt
mysys/CMakeLists.txt
+4
-0
storage/maria/ma_bitmap.c
storage/maria/ma_bitmap.c
+2
-4
storage/maria/maria_chk.c
storage/maria/maria_chk.c
+1
-2
storage/myisam/myisamchk.c
storage/myisam/myisamchk.c
+2
-2
No files found.
client/mysqldump.c
View file @
7189f09a
...
...
@@ -4427,7 +4427,7 @@ static int dump_selected_tables(char *db, char **table_names, int tables)
static
int
do_show_master_status
(
MYSQL
*
mysql_con
,
int
consistent_binlog_pos
)
{
MYSQL_ROW
row
;
MYSQL_RES
*
master
;
MYSQL_RES
*
UNINIT_VAR
(
master
)
;
char
binlog_pos_file
[
FN_REFLEN
];
char
binlog_pos_offset
[
LONGLONG_LEN
+
1
];
char
*
file
,
*
offset
;
...
...
client/mysqltest.cc
View file @
7189f09a
...
...
@@ -8137,8 +8137,8 @@ void run_query(struct st_connection *cn, struct st_command *command, int flags)
char
*
re_eprint
(
int
err
)
{
static
char
epbuf
[
100
];
size_t
len
=
my_regerror
(
REG_ITOA
|
err
,
(
my_regex_t
*
)
NULL
,
epbuf
,
sizeof
(
epbuf
));
size_t
len
__attribute__
((
unused
))
=
my_regerror
(
REG_ITOA
|
err
,
(
my_regex_t
*
)
NULL
,
epbuf
,
sizeof
(
epbuf
));
assert
(
len
<=
sizeof
(
epbuf
));
return
(
epbuf
);
}
...
...
mysql-test/suite/sys_vars/t/debug_binlog_fsync_sleep_basic.test
View file @
7189f09a
# ulong global
--
source
include
/
have_debug
.
inc
SET
@
start_global_value
=
@@
global
.
debug_binlog_fsync_sleep
;
#
...
...
mysys/CMakeLists.txt
View file @
7189f09a
...
...
@@ -70,6 +70,10 @@ TARGET_LINK_LIBRARIES(mysys dbug strings ${ZLIB_LIBRARY}
${
LIBNSL
}
${
LIBM
}
${
LIBRT
}
)
DTRACE_INSTRUMENT
(
mysys
)
IF
(
WIN32
)
TARGET_LINK_LIBRARIES
(
mysys IPHLPAPI
)
ENDIF
(
WIN32
)
ADD_EXECUTABLE
(
thr_lock thr_lock.c
)
TARGET_LINK_LIBRARIES
(
thr_lock mysys
)
SET_TARGET_PROPERTIES
(
thr_lock PROPERTIES COMPILE_FLAGS
"-DMAIN"
)
...
...
storage/maria/ma_bitmap.c
View file @
7189f09a
...
...
@@ -1239,10 +1239,9 @@ static my_bool allocate_head(MARIA_FILE_BITMAP *bitmap, uint size,
uint
min_bits
=
size_to_head_pattern
(
bitmap
,
size
);
uchar
*
data
=
bitmap
->
map
,
*
end
=
data
+
bitmap
->
used_size
;
uchar
*
best_data
=
0
;
uint
best_bits
=
(
uint
)
-
1
,
best_pos
;
uint
best_bits
=
(
uint
)
-
1
,
UNINIT_VAR
(
best_pos
)
;
DBUG_ENTER
(
"allocate_head"
);
LINT_INIT
(
best_pos
);
DBUG_ASSERT
(
size
<=
FULL_PAGE_SIZE
(
bitmap
->
block_size
));
for
(;
data
<
end
;
data
+=
6
)
...
...
@@ -1319,11 +1318,10 @@ static my_bool allocate_tail(MARIA_FILE_BITMAP *bitmap, uint size,
uint
min_bits
=
size_to_tail_pattern
(
bitmap
,
size
);
uchar
*
data
=
bitmap
->
map
,
*
end
=
data
+
bitmap
->
used_size
;
uchar
*
best_data
=
0
;
uint
best_bits
=
(
uint
)
-
1
,
best_pos
;
uint
best_bits
=
(
uint
)
-
1
,
UNINIT_VAR
(
best_pos
)
;
DBUG_ENTER
(
"allocate_tail"
);
DBUG_PRINT
(
"enter"
,
(
"size: %u"
,
size
));
LINT_INIT
(
best_pos
);
/*
We have to add DIR_ENTRY_SIZE here as this is not part of the data size
See call to allocate_tail() in find_tail().
...
...
storage/maria/maria_chk.c
View file @
7189f09a
...
...
@@ -798,8 +798,7 @@ get_one_option(int optid,
case
OPT_STATS_METHOD
:
{
int
method
;
enum_handler_stats_method
method_conv
;
LINT_INIT
(
method_conv
);
enum_handler_stats_method
UNINIT_VAR
(
method_conv
);
maria_stats_method_str
=
argument
;
if
((
method
=
find_type
(
argument
,
&
maria_stats_method_typelib
,
2
))
<=
0
)
{
...
...
storage/myisam/myisamchk.c
View file @
7189f09a
...
...
@@ -670,8 +670,8 @@ get_one_option(int optid,
case
OPT_STATS_METHOD
:
{
int
method
;
enum_handler_stats_method
method_conv
;
LINT_INIT
(
method_conv
);
enum_handler_stats_method
UNINIT_VAR
(
method_conv
)
;
myisam_stats_method_str
=
argument
;
if
((
method
=
find_type
(
argument
,
&
myisam_stats_method_typelib
,
FIND_TYPE_BASIC
))
<=
0
)
...
...
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