#include #include #include #include #include #include #include #include #include #include #include namespace DB { template <> bool ColumnConst::isNull() const { return true; } template <> StringRef ColumnConst::getDataAt(size_t n) const { return StringRef{}; } template <> StringRef ColumnConst::getDataAtWithTerminatingZero(size_t n) const { throw Exception("Method getDataAtWithTerminatingZero is not supported for " + this->getName(), ErrorCodes::NOT_IMPLEMENTED); } template <> UInt64 ColumnConst::get64(size_t n) const { throw Exception("Method get64 is not supported for " + this->getName(), ErrorCodes::NOT_IMPLEMENTED); } template <> ColumnPtr ColumnConst::convertToFullColumn() const { return std::make_shared(std::make_shared(size(), 0), true); } template <> ColumnPtr ColumnConst::convertToFullColumn() const { if (!data_type || typeid_cast(&*data_type)) { auto res = std::make_shared(); ColumnString::Offsets_t & offsets = res->getOffsets(); ColumnString::Chars_t & vec = res->getChars(); size_t string_size = data.size() + 1; size_t offset = 0; offsets.resize(s); vec.resize(s * string_size); for (size_t i = 0; i < s; ++i) { memcpy(&vec[offset], data.data(), string_size); offset += string_size; offsets[i] = offset; } return res; } else if (const DataTypeFixedString * type = typeid_cast(&*data_type)) { size_t n = type->getN(); if (data.size() > n) throw Exception("Too long value for " + type->getName(), ErrorCodes::TOO_LARGE_STRING_SIZE); auto res = std::make_shared(n); ColumnFixedString::Chars_t & vec = res->getChars(); vec.resize_fill(n * s); size_t offset = 0; for (size_t i = 0; i < s; ++i) { memcpy(&vec[offset], data.data(), data.size()); offset += n; } return res; } else throw Exception("Invalid data type in ColumnConstString: " + data_type->getName(), ErrorCodes::LOGICAL_ERROR); } ColumnPtr ColumnConst::convertToFullColumn() const { if (!data_type) throw Exception("No data type specified for ColumnConstArray", ErrorCodes::LOGICAL_ERROR); const DataTypeArray * type = typeid_cast(&*data_type); if (!type) throw Exception("Non-array data type specified for ColumnConstArray", ErrorCodes::LOGICAL_ERROR); const Array & array = getDataFromHolderImpl(); size_t array_size = array.size(); ColumnPtr nested_column = type->getNestedType()->createColumn(); auto res = std::make_shared(nested_column); ColumnArray::Offsets_t & offsets = res->getOffsets(); offsets.resize(s); for (size_t i = 0; i < s; ++i) { offsets[i] = (i + 1) * array_size; for (size_t j = 0; j < array_size; ++j) nested_column->insert(array[j]); } return res; } StringRef ColumnConst::getDataAt(size_t n) const { throw Exception("Method getDataAt is not supported for " + this->getName(), ErrorCodes::NOT_IMPLEMENTED); } UInt64 ColumnConst::get64(size_t n) const { throw Exception("Method get64 is not supported for " + this->getName(), ErrorCodes::NOT_IMPLEMENTED); } StringRef ColumnConst::getDataAtWithTerminatingZero(size_t n) const { throw Exception("Method getDataAt is not supported for " + this->getName(), ErrorCodes::NOT_IMPLEMENTED); } ColumnPtr ColumnConst::convertToFullColumn() const { return convertToTupleOfConstants()->convertToFullColumnIfConst(); } ColumnPtr ColumnConst::convertToTupleOfConstants() const { if (!data_type) throw Exception("No data type specified for ColumnConstTuple", ErrorCodes::LOGICAL_ERROR); const DataTypeTuple * type = typeid_cast(&*data_type); if (!type) throw Exception("Non-Tuple data type specified for ColumnConstTuple", ErrorCodes::LOGICAL_ERROR); /// Create columns for each element and convert to full columns. const DataTypes & element_types = type->getElements(); size_t tuple_size = element_types.size(); Block block; for (size_t i = 0; i < tuple_size; ++i) block.insert(ColumnWithTypeAndName{ element_types[i]->createConstColumn(s, static_cast(*data)[i]), element_types[i], ""}); return std::make_shared(block); } void ColumnConst::getExtremes(Field & min, Field & max) const { min = *data; max = *data; } StringRef ColumnConst::getDataAt(size_t n) const { throw Exception("Method getDataAt is not supported for " + this->getName(), ErrorCodes::NOT_IMPLEMENTED); } UInt64 ColumnConst::get64(size_t n) const { throw Exception("Method get64 is not supported for " + this->getName(), ErrorCodes::NOT_IMPLEMENTED); } StringRef ColumnConst::getDataAtWithTerminatingZero(size_t n) const { throw Exception("Method getDataAt is not supported for " + this->getName(), ErrorCodes::NOT_IMPLEMENTED); } }