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
10f8e8f9
Commit
10f8e8f9
authored
Jan 11, 2006
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WL#1892 Post-review fix, removed index insertion in list at create
parent
8764e3c5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+0
-1
sql/ha_ndbcluster.h
sql/ha_ndbcluster.h
+2
-3
No files found.
sql/ha_ndbcluster.cc
View file @
10f8e8f9
...
...
@@ -1138,7 +1138,6 @@ int ha_ndbcluster::create_indexes(Ndb *ndb, TABLE *tab)
DBUG_PRINT
(
"error"
,
(
"Failed to create index %u"
,
i
));
break
;
}
m_index
[
i
].
status
=
CREATED
;
}
DBUG_RETURN
(
error
);
...
...
sql/ha_ndbcluster.h
View file @
10f8e8f9
...
...
@@ -56,9 +56,8 @@ typedef enum ndb_index_type {
typedef
enum
ndb_index_status
{
UNDEFINED
=
0
,
CREATED
=
1
,
ACTIVE
=
2
,
TO_BE_DROPPED
=
3
ACTIVE
=
1
,
TO_BE_DROPPED
=
2
}
NDB_INDEX_STATUS
;
typedef
struct
ndb_index_data
{
...
...
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