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
c7a78551
Commit
c7a78551
authored
Aug 21, 2006
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb - bug#16310
better error message for creating table with non-existing tablespace
parent
8ea0b133
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp
storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp
+3
-0
storage/ndb/src/ndbapi/ndberror.c
storage/ndb/src/ndbapi/ndberror.c
+1
-1
No files found.
storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp
View file @
c7a78551
...
...
@@ -2600,6 +2600,9 @@ loop:
else
{
// error set by get filegroup
if
(
m_error
.
code
==
723
)
m_error
.
code
=
755
;
NdbMem_Free
((
void
*
)
tmpTab
);
DBUG_RETURN
(
-
1
);
}
...
...
storage/ndb/src/ndbapi/ndberror.c
View file @
c7a78551
...
...
@@ -376,7 +376,7 @@ ErrorBundle ErrorCodes[] = {
{
752
,
DMEC
,
SE
,
"Invalid file format"
},
{
753
,
IE
,
SE
,
"Invalid filegroup for file"
},
{
754
,
IE
,
SE
,
"Invalid filegroup version when creating file"
},
{
755
,
DMEC
,
SE
,
"Invalid tablespace"
},
{
755
,
HA_WRONG_CREATE_OPTION
,
SE
,
"Invalid tablespace"
},
{
756
,
DMEC
,
SE
,
"Index on disk column is not supported"
},
{
757
,
DMEC
,
SE
,
"Varsize bitfield not supported"
},
{
758
,
DMEC
,
SE
,
"Tablespace has changed"
},
...
...
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