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
0d360045
Commit
0d360045
authored
Sep 15, 2006
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb - bug#21756
Fix for alter table when node is down...that could cause pain and misery
parent
96ff8b4c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
ndb/src/kernel/blocks/dbdict/Dbdict.cpp
ndb/src/kernel/blocks/dbdict/Dbdict.cpp
+2
-1
No files found.
ndb/src/kernel/blocks/dbdict/Dbdict.cpp
View file @
0d360045
...
...
@@ -2313,7 +2313,8 @@ void Dbdict::checkSchemaStatus(Signal* signal)
tablePtr
.
p
->
tableType
=
(
DictTabInfo
::
TableType
)
oldEntry
->
m_tableType
;
// On NR get index from master because index state is not on file
const
bool
file
=
c_systemRestart
||
tablePtr
.
p
->
isTable
();
const
bool
file
=
(
*
newEntry
==
*
oldEntry
)
&&
(
c_systemRestart
||
tablePtr
.
p
->
isTable
());
restartCreateTab
(
signal
,
tableId
,
oldEntry
,
file
);
return
;
...
...
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