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
80c01c3f
Commit
80c01c3f
authored
May 24, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #16997 Table rename that changes database does not rename indexes: merge
parent
1f4c04e8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
16 deletions
+18
-16
ndb/include/ndbapi/NdbDictionary.hpp
ndb/include/ndbapi/NdbDictionary.hpp
+15
-14
ndb/src/ndbapi/NdbDictionary.cpp
ndb/src/ndbapi/NdbDictionary.cpp
+1
-1
ndb/src/ndbapi/NdbDictionaryImpl.hpp
ndb/src/ndbapi/NdbDictionaryImpl.hpp
+2
-1
No files found.
ndb/include/ndbapi/NdbDictionary.hpp
View file @
80c01c3f
...
...
@@ -1182,6 +1182,15 @@ public:
const
Index
*
getIndex
(
const
char
*
indexName
,
const
char
*
tableName
)
const
;
/**
* Get index with given name, NULL if undefined
* @param indexName Name of index to get.
* @param Table instance table that index belongs to.
* @return index if successful, otherwise 0.
*/
const
Index
*
getIndex
(
const
char
*
indexName
,
const
Table
&
table
)
const
;
/**
* Fetch list of indexes of given table.
* @param list Reference to list where to store the listed indexes
...
...
@@ -1301,23 +1310,15 @@ public:
*/
int
dropIndex
(
const
char
*
indexName
,
const
char
*
tableName
);
/**
* Get index with given name, NULL if undefined
* @param indexName Name of index to get.
* @param tableName Name of table that index belongs to.
* @return index if successful, otherwise 0.
*/
const
Index
*
getIndex
(
const
char
*
indexName
,
const
char
*
tableName
);
/**
* Get index with given name, NULL if undefined
* @param indexName Name of index to get.
* @param Table instance table that index belongs to.
* @return index if successful, otherwise 0.
* Drop index the defined Index instance
* @param Index to drop
* @return 0 if successful otherwise -1.
*/
const
Index
*
getIndex
(
const
char
*
indexName
,
const
Table
&
table
);
int
dropIndex
(
const
Index
&
);
#ifndef DOXYGEN_SHOULD_SKIP_INTERNAL
/**
* Invalidate cached index object
...
...
ndb/src/ndbapi/NdbDictionary.cpp
View file @
80c01c3f
...
...
@@ -818,7 +818,7 @@ NdbDictionary::Dictionary::getIndex(const char * indexName,
const
NdbDictionary
::
Index
*
NdbDictionary
::
Dictionary
::
getIndex
(
const
char
*
indexName
,
const
Table
&
t
)
const
Table
&
t
)
const
{
NdbIndexImpl
*
i
=
m_impl
.
getIndex
(
indexName
,
&
NdbTableImpl
::
getImpl
(
t
));
if
(
i
)
...
...
ndb/src/ndbapi/NdbDictionaryImpl.hpp
View file @
80c01c3f
...
...
@@ -702,6 +702,7 @@ inline
NdbIndexImpl
*
NdbDictionaryImpl
::
getIndex
(
const
char
*
index_name
,
const
char
*
table_name
)
{
return
getIndex
(
index_name
,
(
table_name
)
?
getTable
(
table_name
)
:
NULL
);
}
...
...
@@ -710,7 +711,7 @@ NdbIndexImpl *
NdbDictionaryImpl
::
getIndex
(
const
char
*
index_name
,
NdbTableImpl
*
table
)
{
if
(
table
||
m_ndb
.
usingFullyQualifiedNames
())
{
if
(
table
||
m_ndb
.
usingFullyQualifiedNames
())
{
const
BaseString
internal_indexname
(
(
table
)
...
...
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