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:
@ -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
|
||||
|
Reference in New Issue
Block a user