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
05dd5fc2
Commit
05dd5fc2
authored
Dec 12, 2006
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb - bug#25001
make sure DISK flag is set on DATA column for blob table
parent
6caf18ca
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp
storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp
+6
-2
storage/ndb/src/ndbapi/NdbDictionaryImpl.hpp
storage/ndb/src/ndbapi/NdbDictionaryImpl.hpp
+1
-1
No files found.
storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp
View file @
05dd5fc2
...
...
@@ -2302,7 +2302,7 @@ NdbDictionaryImpl::createTable(NdbTableImpl &t)
}
// blob tables - use "t2" to get values set by kernel
if
(
t2
->
m_noOfBlobs
!=
0
&&
createBlobTables
(
*
t2
)
!=
0
)
{
if
(
t2
->
m_noOfBlobs
!=
0
&&
createBlobTables
(
t
,
*
t2
)
!=
0
)
{
int
save_code
=
m_error
.
code
;
(
void
)
dropTableGlobal
(
*
t2
);
m_error
.
code
=
save_code
;
...
...
@@ -2316,7 +2316,7 @@ NdbDictionaryImpl::createTable(NdbTableImpl &t)
}
int
NdbDictionaryImpl
::
createBlobTables
(
NdbTableImpl
&
t
)
NdbDictionaryImpl
::
createBlobTables
(
NdbTableImpl
&
orig
,
NdbTableImpl
&
t
)
{
DBUG_ENTER
(
"NdbDictionaryImpl::createBlobTables"
);
for
(
unsigned
i
=
0
;
i
<
t
.
m_columns
.
size
();
i
++
)
{
...
...
@@ -2325,6 +2325,10 @@ NdbDictionaryImpl::createBlobTables(NdbTableImpl &t)
continue
;
NdbTableImpl
bt
;
NdbBlob
::
getBlobTable
(
bt
,
&
t
,
&
c
);
NdbDictionary
::
Column
::
StorageType
d
=
NdbDictionary
::
Column
::
StorageTypeDisk
;
if
(
orig
.
m_columns
[
i
]
->
getStorageType
()
==
d
)
bt
.
getColumn
(
"DATA"
)
->
setStorageType
(
d
);
if
(
createTable
(
bt
)
!=
0
)
{
DBUG_RETURN
(
-
1
);
}
...
...
storage/ndb/src/ndbapi/NdbDictionaryImpl.hpp
View file @
05dd5fc2
...
...
@@ -582,7 +582,7 @@ public:
bool
setTransporter
(
class
TransporterFacade
*
tf
);
int
createTable
(
NdbTableImpl
&
t
);
int
createBlobTables
(
NdbTableImpl
&
t
);
int
createBlobTables
(
NdbTableImpl
&
org
,
NdbTableImpl
&
created
);
int
alterTable
(
NdbTableImpl
&
t
);
int
dropTable
(
const
char
*
name
);
int
dropTable
(
NdbTableImpl
&
);
...
...
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