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
946300c8
Commit
946300c8
authored
Jan 11, 2006
by
mskold@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WL#1892 Post-review fix, removed index insertion in list at create
parent
e39e2d9a
Changes
2
Hide 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 @
946300c8
...
...
@@ -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 @
946300c8
...
...
@@ -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