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
b3ece14b
Commit
b3ece14b
authored
Sep 30, 2009
by
He Zhenxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backporting BUG#40244 Optimized build of mysqld crashes when built with Sun Studio on SPARC
parent
7771b902
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
sql/rpl_handler.cc
sql/rpl_handler.cc
+4
-4
No files found.
sql/rpl_handler.cc
View file @
b3ece14b
...
...
@@ -88,11 +88,11 @@ int get_user_var_str(const char *name, char *value,
int
delegates_init
()
{
static
unsigned
char
trans_mem
[
sizeof
(
Trans_delegate
)
];
static
unsigned
char
storage_mem
[
sizeof
(
Binlog_storage_delegate
)
];
static
unsigned
long
trans_mem
[
sizeof
(
Trans_delegate
)
/
sizeof
(
unsigned
long
)
+
1
];
static
unsigned
long
storage_mem
[
sizeof
(
Binlog_storage_delegate
)
/
sizeof
(
unsigned
long
)
+
1
];
#ifdef HAVE_REPLICATION
static
unsigned
char
transmit_mem
[
sizeof
(
Binlog_transmit_delegate
)
];
static
unsigned
char
relay_io_mem
[
sizeof
(
Binlog_relay_IO_delegate
)
];
static
unsigned
long
transmit_mem
[
sizeof
(
Binlog_transmit_delegate
)
/
sizeof
(
unsigned
long
)
+
1
];
static
unsigned
long
relay_io_mem
[
sizeof
(
Binlog_relay_IO_delegate
)
/
sizeof
(
unsigned
long
)
+
1
];
#endif
if
(
!
(
transaction_delegate
=
new
(
trans_mem
)
Trans_delegate
)
...
...
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