1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

merge ndb api blobs

This commit is contained in:
unknown
2004-06-10 14:02:31 +02:00
parent 2aacdd9435
commit 68ab60694f
5 changed files with 55 additions and 100 deletions

View File

@ -321,6 +321,11 @@ public:
void setStripeSize(int size) { setLength(size); }
int getStripeSize() const { return getLength(); }
/**
* Get size of element
*/
int Column::getSize() const;
/**
* Set distribution key
*
@ -372,6 +377,7 @@ public:
#endif
private:
friend class NdbRecAttr;
friend class NdbColumnImpl;
class NdbColumnImpl & m_impl;
Column(NdbColumnImpl&);
@ -1054,4 +1060,6 @@ public:
};
};
class NdbOut& operator <<(class NdbOut& ndbout, const NdbDictionary::Column::Type type);
#endif