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
ed8d32f6
Commit
ed8d32f6
authored
May 28, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/home/my/mysql-4.1
parents
72a71135
be567b59
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
9 deletions
+11
-9
ndb/src/Makefile
ndb/src/Makefile
+1
-0
ndb/src/newtonapi/dba_schema.cpp
ndb/src/newtonapi/dba_schema.cpp
+10
-9
No files found.
ndb/src/Makefile
View file @
ed8d32f6
...
...
@@ -7,6 +7,7 @@ DIRS := \
ndbapi
\
mgmsrv
\
mgmapi
\
newtonapi
\
rep
\
mgmclient
\
cw
\
...
...
ndb/src/newtonapi/dba_schema.cpp
View file @
ed8d32f6
...
...
@@ -15,6 +15,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include "dba_internal.hpp"
#include "NdbSchemaCon.hpp"
static
bool
getNdbAttr
(
DBA_DataTypes_t
,
Size_t
,
...
...
@@ -31,7 +32,7 @@ DBA_CreateTable(const char* TableName,
if
(
DBA_TableExists
(
TableName
))
return
DBA_NO_ERROR
;
NdbSchemaCon
*
schemaCon
=
DBA__TheNdb
->
startSchemaTransaction
(
);
NdbSchemaCon
*
schemaCon
=
NdbSchemaCon
::
startSchemaTrans
(
DBA__TheNdb
);
if
(
schemaCon
==
0
){
DBA__SetLatestError
(
DBA_NDB_ERROR
,
0
,
"Internal NDB error: No schema transaction"
);
...
...
@@ -39,8 +40,8 @@ DBA_CreateTable(const char* TableName,
}
NdbSchemaOp
*
schemaOp
=
schemaCon
->
getNdbSchemaOp
();
if
(
schemaOp
==
0
){
DBA__TheNdb
->
closeSchemaTransaction
(
schemaCon
);
if
(
schemaOp
==
0
){
NdbSchemaCon
::
closeSchemaTrans
(
schemaCon
);
DBA__SetLatestError
(
DBA_NDB_ERROR
,
0
,
"Internal NDB error: No schema op"
);
return
DBA_NDB_ERROR
;
...
...
@@ -56,7 +57,7 @@ DBA_CreateTable(const char* TableName,
80
,
1
,
false
)
==
-
1
){
DBA__TheNdb
->
closeSchemaTransaction
(
schemaCon
);
NdbSchemaCon
::
closeSchemaTrans
(
schemaCon
);
DBA__SetLatestError
(
DBA_NDB_ERROR
,
0
,
"Internal NDB error: Create table failed"
);
return
DBA_NDB_ERROR
;
...
...
@@ -71,7 +72,7 @@ DBA_CreateTable(const char* TableName,
&
attrSize
,
&
arraySize
,
&
attrType
)){
DBA__TheNdb
->
closeSchemaTransaction
(
schemaCon
);
NdbSchemaCon
::
closeSchemaTrans
(
schemaCon
);
DBA__SetLatestError
(
DBA_APPLICATION_ERROR
,
0
,
"Invalid datatype/size combination"
);
return
DBA_APPLICATION_ERROR
;
...
...
@@ -82,7 +83,7 @@ DBA_CreateTable(const char* TableName,
attrSize
,
arraySize
,
attrType
)
==
-
1
){
DBA__TheNdb
->
closeSchemaTransaction
(
schemaCon
);
NdbSchemaCon
::
closeSchemaTrans
(
schemaCon
);
DBA__SetLatestError
(
DBA_NDB_ERROR
,
0
,
"Internal NDB error: Create attribute failed"
);
return
DBA_NDB_ERROR
;
...
...
@@ -90,14 +91,14 @@ DBA_CreateTable(const char* TableName,
}
if
(
schemaCon
->
execute
()
==
-
1
){
DBA__TheNdb
->
closeSchemaTransaction
(
schemaCon
);
NdbSchemaCon
::
closeSchemaTrans
(
schemaCon
);
DBA__SetLatestError
(
DBA_NDB_ERROR
,
0
,
"Internal NDB error: Execute schema failed"
);
return
DBA_NDB_ERROR
;
}
DBA__TheNdb
->
closeSchemaTransaction
(
schemaCon
);
NdbSchemaCon
::
closeSchemaTrans
(
schemaCon
);
return
DBA_NO_ERROR
;
}
...
...
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