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
b4fd92f5
Commit
b4fd92f5
authored
Apr 24, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge tulin@bk-internal.mysql.com:/home/bk/mysql-5.1-new
into poseidon.ndb.mysql.com:/home/tomas/mysql-5.1-new
parents
c7a5f503
1a16b06e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
sql/sql_tablespace.cc
sql/sql_tablespace.cc
+2
-1
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
+9
-2
No files found.
sql/sql_tablespace.cc
View file @
b4fd92f5
...
@@ -28,7 +28,8 @@ int mysql_alter_tablespace(THD *thd, st_alter_tablespace *ts_info)
...
@@ -28,7 +28,8 @@ int mysql_alter_tablespace(THD *thd, st_alter_tablespace *ts_info)
If the user haven't defined an engine, this will fallback to using the
If the user haven't defined an engine, this will fallback to using the
default storage engine.
default storage engine.
*/
*/
hton
=
ha_resolve_by_legacy_type
(
thd
,
ts_info
->
storage_engine
);
hton
=
ha_resolve_by_legacy_type
(
thd
,
ts_info
->
storage_engine
!=
DB_TYPE_UNKNOWN
?
ts_info
->
storage_engine
:
DB_TYPE_DEFAULT
);
if
(
hton
->
state
==
SHOW_OPTION_YES
&&
if
(
hton
->
state
==
SHOW_OPTION_YES
&&
hton
->
alter_tablespace
&&
(
error
=
hton
->
alter_tablespace
(
thd
,
ts_info
)))
hton
->
alter_tablespace
&&
(
error
=
hton
->
alter_tablespace
(
thd
,
ts_info
)))
...
...
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
View file @
b4fd92f5
...
@@ -1911,12 +1911,16 @@ NdbEventBuffer::merge_data(const SubTableData * const sdata,
...
@@ -1911,12 +1911,16 @@ NdbEventBuffer::merge_data(const SubTableData * const sdata,
// loop twice where first loop only sets sizes
// loop twice where first loop only sets sizes
int
loop
;
int
loop
;
int
result
=
0
;
for
(
loop
=
0
;
loop
<=
1
;
loop
++
)
for
(
loop
=
0
;
loop
<=
1
;
loop
++
)
{
{
if
(
loop
==
1
)
if
(
loop
==
1
)
{
{
if
(
alloc_mem
(
data
,
ptr
)
!=
0
)
if
(
alloc_mem
(
data
,
ptr
)
!=
0
)
DBUG_RETURN_EVENT
(
-
1
);
{
result
=
-
1
;
goto
end
;
}
*
data
->
sdata
=
*
sdata
;
*
data
->
sdata
=
*
sdata
;
data
->
sdata
->
operation
=
tp
->
t3
;
data
->
sdata
->
operation
=
tp
->
t3
;
}
}
...
@@ -2030,10 +2034,13 @@ NdbEventBuffer::merge_data(const SubTableData * const sdata,
...
@@ -2030,10 +2034,13 @@ NdbEventBuffer::merge_data(const SubTableData * const sdata,
}
}
}
}
end:
// free old data
// free old data
NdbMem_Free
((
char
*
)
olddata
.
memory
);
NdbMem_Free
((
char
*
)
olddata
.
memory
);
assert
(
m_total_alloc
>=
olddata
.
sz
);
m_total_alloc
-=
olddata
.
sz
;
DBUG_RETURN_EVENT
(
0
);
DBUG_RETURN_EVENT
(
result
);
}
}
/*
/*
...
...
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