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
4c3abf61
Commit
4c3abf61
authored
Apr 25, 2006
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb -
Fix so that testDict can use/handle disk tables
parent
834d349f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
storage/ndb/test/ndbapi/testDict.cpp
storage/ndb/test/ndbapi/testDict.cpp
+6
-6
No files found.
storage/ndb/test/ndbapi/testDict.cpp
View file @
4c3abf61
...
...
@@ -109,7 +109,7 @@ int runCreateTheTable(NDBT_Context* ctx, NDBT_Step* step){
const
NdbDictionary
::
Table
*
pTab
=
ctx
->
getTab
();
// Try to create table in db
if
(
pTab
->
createTableInDb
(
pNdb
)
!=
0
){
if
(
NDBT_Tables
::
createTable
(
pNdb
,
pTab
->
getName
()
)
!=
0
){
return
NDBT_FAILED
;
}
...
...
@@ -151,7 +151,7 @@ int runCreateTableWhenDbIsFull(NDBT_Context* ctx, NDBT_Step* step){
}
// Try to create table in db
if
(
pTab
->
createTableInDb
(
pNdb
)
==
0
){
if
(
NDBT_Tables
::
createTable
(
pNdb
,
pTab
->
getName
()
)
==
0
){
result
=
NDBT_FAILED
;
}
...
...
@@ -203,7 +203,7 @@ int runCreateAndDrop(NDBT_Context* ctx, NDBT_Step* step){
ndbout
<<
i
<<
": "
;
// Try to create table in db
if
(
pTab
->
createTableInDb
(
pNdb
)
!=
0
){
if
(
NDBT_Tables
::
createTable
(
pNdb
,
pTab
->
getName
()
)
!=
0
){
return
NDBT_FAILED
;
}
...
...
@@ -254,7 +254,8 @@ int runCreateAndDropWithData(NDBT_Context* ctx, NDBT_Step* step){
while
(
i
<
loops
){
ndbout
<<
i
<<
": "
;
// Try to create table in db
if
(
pTab
->
createTableInDb
(
pNdb
)
!=
0
){
if
(
NDBT_Tables
::
createTable
(
pNdb
,
pTab
->
getName
())
!=
0
){
return
NDBT_FAILED
;
}
...
...
@@ -336,7 +337,7 @@ int runCreateAndDropDuring(NDBT_Context* ctx, NDBT_Step* step){
Ndb
*
pNdb
=
GETNDB
(
step
);
g_debug
<<
"Creating table"
<<
endl
;
if
(
pTab
->
createTableInDb
(
pNdb
)
!=
0
){
if
(
NDBT_Tables
::
createTable
(
pNdb
,
pTab
->
getName
()
)
!=
0
){
g_err
<<
"createTableInDb failed"
<<
endl
;
result
=
NDBT_FAILED
;
continue
;
...
...
@@ -357,7 +358,6 @@ int runCreateAndDropDuring(NDBT_Context* ctx, NDBT_Step* step){
g_debug
<<
"Dropping table"
<<
endl
;
if
(
pNdb
->
getDictionary
()
->
dropTable
(
pTab2
->
getName
())
!=
0
){
g_err
<<
"Failed to drop "
<<
pTab2
->
getName
()
<<
" in db"
<<
endl
;
result
=
NDBT_FAILED
;
...
...
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