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
a2259d84
Commit
a2259d84
authored
Jan 28, 2010
by
Alexander Nozdrin
Browse files
Options
Browse Files
Download
Plain Diff
Manual merge from mysql-trunk-merge.
Conflicts: - storage/archive/ha_archive.cc
parents
c80c4bde
cdcf2ae9
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
19 deletions
+19
-19
storage/archive/ha_archive.cc
storage/archive/ha_archive.cc
+1
-1
storage/ndb/include/ndbapi/NdbEventOperation.hpp
storage/ndb/include/ndbapi/NdbEventOperation.hpp
+4
-4
storage/ndb/include/ndbapi/NdbOperation.hpp
storage/ndb/include/ndbapi/NdbOperation.hpp
+2
-2
storage/ndb/src/ndbapi/NdbEventOperation.cpp
storage/ndb/src/ndbapi/NdbEventOperation.cpp
+4
-4
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
+4
-4
storage/ndb/src/ndbapi/NdbEventOperationImpl.hpp
storage/ndb/src/ndbapi/NdbEventOperationImpl.hpp
+4
-4
No files found.
storage/archive/ha_archive.cc
View file @
a2259d84
...
...
@@ -1555,7 +1555,7 @@ int ha_archive::info(uint flag)
stats
.
data_file_length
=
file_stat
.
st_size
;
stats
.
index_file_length
=
0
;
stats
.
mean_rec_length
=
stats
.
records
?
stats
.
data_file_length
/
stats
.
records
:
table
->
s
->
reclength
;
ulong
(
stats
.
data_file_length
/
stats
.
records
)
:
table
->
s
->
reclength
;
}
}
...
...
storage/ndb/include/ndbapi/NdbEventOperation.hpp
View file @
a2259d84
...
...
@@ -178,22 +178,22 @@ public:
/**
* Check if table name has changed, for event TE_ALTER
*/
const
bool
tableNameChanged
()
const
;
bool
tableNameChanged
()
const
;
/**
* Check if table frm has changed, for event TE_ALTER
*/
const
bool
tableFrmChanged
()
const
;
bool
tableFrmChanged
()
const
;
/**
* Check if table fragmentation has changed, for event TE_ALTER
*/
const
bool
tableFragmentationChanged
()
const
;
bool
tableFragmentationChanged
()
const
;
/**
* Check if table range partition list name has changed, for event TE_ALTER
*/
const
bool
tableRangeListChanged
()
const
;
bool
tableRangeListChanged
()
const
;
/**
* Retrieve the GCI of the latest retrieved event
...
...
storage/ndb/include/ndbapi/NdbOperation.hpp
View file @
a2259d84
...
...
@@ -779,7 +779,7 @@ public:
/**
* Get the type of access for this operation
*/
const
Type
getType
()
const
;
Type
getType
()
const
;
/** @} *********************************************************************/
...
...
@@ -1135,7 +1135,7 @@ Return Value Return the Type.
Remark: Gets type of access.
******************************************************************************/
inline
const
NdbOperation
::
Type
NdbOperation
::
Type
NdbOperation
::
getType
()
const
{
return
m_type
;
...
...
storage/ndb/src/ndbapi/NdbEventOperation.cpp
View file @
a2259d84
...
...
@@ -96,22 +96,22 @@ NdbEventOperation::hasError() const
return
m_impl
.
m_has_error
;
}
const
bool
NdbEventOperation
::
tableNameChanged
()
const
bool
NdbEventOperation
::
tableNameChanged
()
const
{
return
m_impl
.
tableNameChanged
();
}
const
bool
NdbEventOperation
::
tableFrmChanged
()
const
bool
NdbEventOperation
::
tableFrmChanged
()
const
{
return
m_impl
.
tableFrmChanged
();
}
const
bool
NdbEventOperation
::
tableFragmentationChanged
()
const
bool
NdbEventOperation
::
tableFragmentationChanged
()
const
{
return
m_impl
.
tableFragmentationChanged
();
}
const
bool
NdbEventOperation
::
tableRangeListChanged
()
const
bool
NdbEventOperation
::
tableRangeListChanged
()
const
{
return
m_impl
.
tableRangeListChanged
();
}
...
...
storage/ndb/src/ndbapi/NdbEventOperationImpl.cpp
View file @
a2259d84
...
...
@@ -658,22 +658,22 @@ NdbEventOperationImpl::stop()
DBUG_RETURN
(
r
);
}
const
bool
NdbEventOperationImpl
::
tableNameChanged
()
const
bool
NdbEventOperationImpl
::
tableNameChanged
()
const
{
return
(
bool
)
AlterTableReq
::
getNameFlag
(
m_change_mask
);
}
const
bool
NdbEventOperationImpl
::
tableFrmChanged
()
const
bool
NdbEventOperationImpl
::
tableFrmChanged
()
const
{
return
(
bool
)
AlterTableReq
::
getFrmFlag
(
m_change_mask
);
}
const
bool
NdbEventOperationImpl
::
tableFragmentationChanged
()
const
bool
NdbEventOperationImpl
::
tableFragmentationChanged
()
const
{
return
(
bool
)
AlterTableReq
::
getFragDataFlag
(
m_change_mask
);
}
const
bool
NdbEventOperationImpl
::
tableRangeListChanged
()
const
bool
NdbEventOperationImpl
::
tableRangeListChanged
()
const
{
return
(
bool
)
AlterTableReq
::
getRangeListFlag
(
m_change_mask
);
}
...
...
storage/ndb/src/ndbapi/NdbEventOperationImpl.hpp
View file @
a2259d84
...
...
@@ -361,10 +361,10 @@ public:
NdbBlob
*
getBlobHandle
(
const
NdbColumnImpl
*
,
int
n
);
int
readBlobParts
(
char
*
buf
,
NdbBlob
*
blob
,
Uint32
part
,
Uint32
count
);
int
receive_event
();
const
bool
tableNameChanged
()
const
;
const
bool
tableFrmChanged
()
const
;
const
bool
tableFragmentationChanged
()
const
;
const
bool
tableRangeListChanged
()
const
;
bool
tableNameChanged
()
const
;
bool
tableFrmChanged
()
const
;
bool
tableFragmentationChanged
()
const
;
bool
tableRangeListChanged
()
const
;
Uint64
getGCI
();
Uint32
getAnyValue
()
const
;
Uint64
getLatestGCI
();
...
...
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