You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
This patch improves handling of NULLs in textual fields in ColumnStore. Previously empty strings were considered NULLs and it could be a problem if data scheme allows for empty strings. It was also one of major reasons of behavior difference between ColumnStore and other engines in MariaDB family. Also, this patch fixes some other bugs and incorrect behavior, for example, incorrect comparison for "column <= ''" which evaluates to constant True for all purposes before this patch.
155 lines
4.0 KiB
C++
155 lines
4.0 KiB
C++
/* Copyright (C) 2014 InfiniDB, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; version 2 of
|
|
the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
MA 02110-1301, USA. */
|
|
|
|
/******************************************************************************
|
|
* $Id: tablecolumn.h 9655 2013-06-25 23:08:13Z xlou $
|
|
*
|
|
*****************************************************************************/
|
|
|
|
/** @file */
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
#include <boost/any.hpp>
|
|
|
|
#include "calpontsystemcatalog.h"
|
|
#include "bytestream.h"
|
|
#include "datalist.h"
|
|
#include "elementtype.h"
|
|
#include "nullstring.h"
|
|
|
|
//#define TC_CHECK_RIDS 1
|
|
|
|
#define EXPORT
|
|
|
|
namespace joblist
|
|
{
|
|
/** @brief create a JobList object from a CalpontExecutionPlan object
|
|
*
|
|
* Class TableColumn contains a column and it's values. TableColumn objects are contained in a
|
|
* TableBand object and used to deliver a band of rows from ExeMgr to the front end.
|
|
*/
|
|
class TableColumn
|
|
{
|
|
public:
|
|
/** @brief enum with the supported value types.
|
|
*/
|
|
enum supportedType
|
|
{
|
|
UINT8,
|
|
UINT16,
|
|
UINT32,
|
|
UINT64,
|
|
STRING,
|
|
UNDEFINED
|
|
};
|
|
|
|
/** @brief constructor
|
|
*/
|
|
EXPORT TableColumn(const execplan::CalpontSystemCatalog::OID columnOID, const supportedType columnType);
|
|
|
|
EXPORT TableColumn();
|
|
|
|
/** @brief getter for the column's OID.
|
|
*/
|
|
inline execplan::CalpontSystemCatalog::OID getColumnOID() const
|
|
{
|
|
return fColumnOID;
|
|
}
|
|
|
|
/** @brief getter for the column's values.
|
|
*/
|
|
inline const boost::shared_ptr<std::vector<uint64_t> > getIntValues()
|
|
{
|
|
return fIntValues;
|
|
}
|
|
|
|
inline const boost::shared_ptr<std::vector<utils::NullString> > getStrValues()
|
|
{
|
|
return fStrValues;
|
|
}
|
|
|
|
inline bool isNullColumn() const
|
|
{
|
|
return fIsNullColumn;
|
|
}
|
|
|
|
// pre-build the bytestream to be returned
|
|
EXPORT void serialize();
|
|
|
|
/** @brief serializes the object into the passed byte stream.
|
|
*/
|
|
EXPORT void serialize(messageqcpp::ByteStream& b);
|
|
|
|
/** @brief inflates the object from the passed byte stream.
|
|
*/
|
|
EXPORT void unserialize(messageqcpp::ByteStream& b);
|
|
|
|
/** @brief adds the column and it's values to the passed NJLSysDataList or appends the values if the column
|
|
* is already included in the NJLSysDataList.
|
|
*/
|
|
EXPORT void addToSysDataList(execplan::CalpontSystemCatalog::NJLSysDataList& sysDataList,
|
|
const std::vector<uint64_t>& rids);
|
|
|
|
#if 0
|
|
EXPORT void addToSysDataRids(execplan::CalpontSystemCatalog::NJLSysDataList& sysDataList, const std::vector<uint64_t>& rids);
|
|
#endif
|
|
inline void setIntValues(boost::shared_ptr<std::vector<uint64_t> > sv)
|
|
{
|
|
fIntValues = sv;
|
|
fIsNullColumn = fIntValues->empty();
|
|
}
|
|
|
|
inline void setStrValues(boost::shared_ptr<std::vector<utils::NullString> > sv)
|
|
{
|
|
fStrValues = sv;
|
|
fIsNullColumn = fStrValues->empty();
|
|
}
|
|
|
|
inline supportedType getColumnType()
|
|
{
|
|
return fColumnType;
|
|
}
|
|
|
|
#ifdef TC_CHECK_RIDS
|
|
const std::vector<uint64_t>& rids() const
|
|
{
|
|
return fRids;
|
|
}
|
|
#endif
|
|
|
|
private:
|
|
execplan::CalpontSystemCatalog::OID fColumnOID;
|
|
boost::shared_ptr<std::vector<uint64_t> > fIntValues;
|
|
boost::shared_ptr<std::vector<utils::NullString> > fStrValues;
|
|
bool fIsNullColumn;
|
|
supportedType fColumnType;
|
|
boost::shared_ptr<messageqcpp::ByteStream> preserialized;
|
|
#ifdef TC_CHECK_RIDS
|
|
std::vector<uint64_t> fRids;
|
|
#endif
|
|
|
|
// defaults okay
|
|
// TableColumn(const TableColumn& rhs); // no copies
|
|
// TableColumn& operator=(const TableColumn& rhs); // no assignments
|
|
};
|
|
|
|
#undef EXPORT
|
|
|
|
} // namespace joblist
|