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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
7650ce4b
Commit
7650ce4b
authored
Jan 30, 2008
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-5.1-opt
into macbook.gmz:/Users/kgeorge/mysql/work/B31326-merge-5.1-opt
parents
7b71c46f
763c1132
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
9 deletions
+12
-9
BUILD/SETUP.sh
BUILD/SETUP.sh
+4
-2
sql/rpl_mi.cc
sql/rpl_mi.cc
+2
-2
storage/heap/ha_heap.cc
storage/heap/ha_heap.cc
+2
-2
storage/ndb/src/kernel/blocks/backup/Backup.hpp
storage/ndb/src/kernel/blocks/backup/Backup.hpp
+2
-1
storage/ndb/src/kernel/blocks/pgman.cpp
storage/ndb/src/kernel/blocks/pgman.cpp
+2
-2
No files found.
BUILD/SETUP.sh
View file @
7650ce4b
...
...
@@ -100,8 +100,10 @@ if [ "x$warning_mode" != "xpedantic" ]; then
# C warnings
c_warnings
=
"
$warnings
-Wunused-parameter"
# C++ warnings
cxx_warnings
=
"
$warnings
-Woverloaded-virtual -Wsign-promo -Wreorder"
cxx_warnings
=
"
$warnings
-Wctor-dtor-privacy -Wnon-virtual-dtor"
cxx_warnings
=
"
$warnings
"
# cxx_warnings="$cxx_warnings -Woverloaded-virtual -Wsign-promo"
cxx_warnings
=
"
$cxx_warnings
-Wreorder"
cxx_warnings
=
"
$cxx_warnings
-Wctor-dtor-privacy -Wnon-virtual-dtor"
# Added unless --with-debug=full
debug_extra_cflags
=
"-O1 -Wuninitialized"
else
...
...
sql/rpl_mi.cc
View file @
7650ce4b
...
...
@@ -29,9 +29,9 @@ int init_strvar_from_file(char *var, int max_size, IO_CACHE *f,
Master_info
::
Master_info
()
:
Slave_reporting_capability
(
"I/O"
),
ssl
(
0
),
fd
(
-
1
),
io_thd
(
0
),
inited
(
0
),
ssl
(
0
),
ssl_verify_server_cert
(
0
),
fd
(
-
1
),
io_thd
(
0
),
inited
(
0
),
abort_slave
(
0
),
slave_running
(
0
),
s
sl_verify_server_cert
(
0
),
s
lave_run_id
(
0
)
slave_run_id
(
0
)
{
host
[
0
]
=
0
;
user
[
0
]
=
0
;
password
[
0
]
=
0
;
ssl_ca
[
0
]
=
0
;
ssl_capath
[
0
]
=
0
;
ssl_cert
[
0
]
=
0
;
...
...
storage/heap/ha_heap.cc
View file @
7650ce4b
...
...
@@ -61,8 +61,8 @@ static handler *heap_create_handler(handlerton *hton,
*****************************************************************************/
ha_heap
::
ha_heap
(
handlerton
*
hton
,
TABLE_SHARE
*
table_arg
)
:
handler
(
hton
,
table_arg
),
file
(
0
),
records_changed
(
0
),
internal_table
(
0
),
key_stat_version
(
0
)
:
handler
(
hton
,
table_arg
),
file
(
0
),
records_changed
(
0
),
key_stat_version
(
0
),
internal_table
(
0
)
{}
...
...
storage/ndb/src/kernel/blocks/backup/Backup.hpp
View file @
7650ce4b
...
...
@@ -425,8 +425,9 @@ public:
ArrayPool
<
TriggerRecord
>
&
trp
)
:
slaveState
(
b
,
validSlaveTransitions
,
validSlaveTransitionsCount
,
1
)
,
tables
(
tp
),
triggers
(
trp
),
files
(
bp
)
,
masterData
(
b
),
backup
(
b
)
,
ctlFilePtr
(
RNIL
),
logFilePtr
(
RNIL
),
dataFilePtr
(
RNIL
)
,
masterData
(
b
),
backup
(
b
)
{
}
...
...
storage/ndb/src/kernel/blocks/pgman.cpp
View file @
7650ce4b
...
...
@@ -259,14 +259,14 @@ Pgman::execCONTINUEB(Signal* signal)
// page entry
Pgman
::
Page_entry
::
Page_entry
(
Uint32
file_no
,
Uint32
page_no
)
:
m_state
(
0
),
m_file_no
(
file_no
),
m_state
(
0
),
m_page_no
(
page_no
),
m_real_page_i
(
RNIL
),
m_copy_page_i
(
RNIL
),
m_lsn
(
0
),
m_last_lcp
(
0
),
m_dirty_count
(
0
),
m_copy_page_i
(
RNIL
),
m_busy_count
(
0
),
m_requests
()
{
...
...
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