1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

WriteBatchFieldMariaDB m_type was wrong (#2090)

This commit is contained in:
Leonid Fedorov
2021-08-18 19:36:53 +03:00
committed by GitHub
parent 3136e9dbab
commit 469e5c7881

View File

@ -202,11 +202,11 @@ class WriteBatchFieldMariaDB: public WriteBatchField
public: public:
Field *m_field; Field * m_field;
const CalpontSystemCatalog::ColType &m_type; const CalpontSystemCatalog::ColType & m_type;
uint32_t m_mbmaxlen; uint32_t m_mbmaxlen;
WriteBatchFieldMariaDB(Field *field, WriteBatchFieldMariaDB(Field *field,
const CalpontSystemCatalog::ColType type, const CalpontSystemCatalog::ColType & type,
uint32_t mbmaxlen) uint32_t mbmaxlen)
:m_field(field), m_type(type), m_mbmaxlen(mbmaxlen) :m_field(field), m_type(type), m_mbmaxlen(mbmaxlen)
{ } { }