2012-08-22 20:29:01 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-07-28 17:34:02 +00:00
|
|
|
#include <shared_mutex>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Columns/ColumnArray.h>
|
|
|
|
#include <DataStreams/IBlockInputStream.h>
|
|
|
|
#include <Interpreters/Limits.h>
|
|
|
|
#include <Interpreters/SetVariants.h>
|
|
|
|
#include <Parsers/IAST.h>
|
|
|
|
#include <Storages/MergeTree/BoolMask.h>
|
2012-08-22 20:29:01 +00:00
|
|
|
|
2016-12-21 12:10:31 +00:00
|
|
|
#include <common/logger_useful.h>
|
2015-03-02 01:11:37 +00:00
|
|
|
|
2017-01-14 09:00:19 +00:00
|
|
|
|
2016-12-21 12:10:31 +00:00
|
|
|
namespace DB
|
2015-03-02 01:11:37 +00:00
|
|
|
{
|
|
|
|
|
2017-01-14 09:11:11 +00:00
|
|
|
struct Range;
|
2017-01-14 09:00:19 +00:00
|
|
|
|
|
|
|
|
2017-03-03 21:15:46 +00:00
|
|
|
/** Data structure for implementation of IN expression.
|
2012-08-22 20:29:01 +00:00
|
|
|
*/
|
2012-08-23 22:40:51 +00:00
|
|
|
class Set
|
2012-08-22 20:29:01 +00:00
|
|
|
{
|
2012-08-23 22:40:51 +00:00
|
|
|
public:
|
2017-04-01 07:20:54 +00:00
|
|
|
Set(const Limits & limits) :
|
|
|
|
log(&Logger::get("Set")),
|
|
|
|
max_rows(limits.max_rows_in_set),
|
|
|
|
max_bytes(limits.max_bytes_in_set),
|
|
|
|
overflow_mode(limits.set_overflow_mode)
|
|
|
|
{
|
|
|
|
}
|
2014-07-06 19:48:39 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
bool empty() const { return data.empty(); }
|
2012-08-23 20:22:44 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/** Create a Set from expression (specified literally in the query).
|
|
|
|
* 'types' - types of what are on the left hand side of IN.
|
|
|
|
* 'node' - list of values: 1, 2, 3 or list of tuples: (1, 2), (3, 4), (5, 6).
|
|
|
|
* 'create_ordered_set' - if true, create ordered vector of elements. For primary key to work.
|
|
|
|
*/
|
|
|
|
void createFromAST(const DataTypes & types, ASTPtr node, const Context & context, bool create_ordered_set);
|
2014-03-04 11:26:55 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
// Returns false, if some limit was exceeded and no need to insert more data.
|
|
|
|
bool insertFromBlock(const Block & block, bool create_ordered_set = false);
|
2014-03-04 11:26:55 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/** For columns of 'block', check belonging of corresponding rows to the set.
|
|
|
|
* Return UInt8 column with the result.
|
|
|
|
*/
|
|
|
|
ColumnPtr execute(const Block & block, bool negative) const;
|
2014-03-26 10:56:21 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
std::string describe() const;
|
2014-04-01 10:09:22 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// Check, if the Set could possibly contain elements for specified range.
|
|
|
|
BoolMask mayBeTrueInRange(const Range & range) const;
|
2014-06-18 20:08:31 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t getTotalRowCount() const { return data.getTotalRowCount(); }
|
|
|
|
size_t getTotalByteCount() const { return data.getTotalByteCount(); }
|
2014-06-18 20:08:31 +00:00
|
|
|
|
2012-08-23 20:22:44 +00:00
|
|
|
private:
|
2017-04-01 07:20:54 +00:00
|
|
|
Sizes key_sizes;
|
|
|
|
|
|
|
|
SetVariants data;
|
|
|
|
|
|
|
|
/** How IN works with Nullable types.
|
|
|
|
*
|
|
|
|
* For simplicity reasons, all NULL values and any tuples with at least one NULL element are ignored in the Set.
|
|
|
|
* And for left hand side values, that are NULLs or contain any NULLs, we return 0 (means that element is not in Set).
|
|
|
|
*
|
|
|
|
* If we want more standard compliant behaviour, we must return NULL
|
|
|
|
* if lhs is NULL and set is not empty or if lhs is not in set, but set contains at least one NULL.
|
|
|
|
* It is more complicated with tuples.
|
|
|
|
* For example,
|
|
|
|
* (1, NULL, 2) IN ((1, NULL, 3)) must return 0,
|
|
|
|
* but (1, NULL, 2) IN ((1, 1111, 2)) must return NULL.
|
|
|
|
*
|
|
|
|
* We have not implemented such sophisticated behaviour.
|
|
|
|
*/
|
|
|
|
|
2017-06-02 21:37:28 +00:00
|
|
|
/** The data types from which the set was created.
|
|
|
|
* When checking for belonging to a set, the types of columns to be checked must match with them.
|
2017-04-01 07:20:54 +00:00
|
|
|
*/
|
|
|
|
DataTypes data_types;
|
|
|
|
|
|
|
|
Logger * log;
|
|
|
|
|
2017-06-02 21:37:28 +00:00
|
|
|
/// Limitations on the maximum size of the set
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t max_rows;
|
|
|
|
size_t max_bytes;
|
|
|
|
OverflowMode overflow_mode;
|
|
|
|
|
2017-06-02 21:37:28 +00:00
|
|
|
/// If there is an array on the left side of IN. We check that at least one element of the array presents in the set.
|
2017-12-15 21:32:25 +00:00
|
|
|
void executeArray(const ColumnArray * key_column, ColumnUInt8::Container & vec_res, bool negative) const;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-06-02 21:37:28 +00:00
|
|
|
/// If in the left part columns contains the same types as the elements of the set.
|
2017-04-01 07:20:54 +00:00
|
|
|
void executeOrdinary(
|
2017-12-13 01:27:53 +00:00
|
|
|
const ColumnRawPtrs & key_columns,
|
2017-12-15 21:32:25 +00:00
|
|
|
ColumnUInt8::Container & vec_res,
|
2017-04-01 07:20:54 +00:00
|
|
|
bool negative,
|
|
|
|
const PaddedPODArray<UInt8> * null_map) const;
|
|
|
|
|
2017-06-02 21:37:28 +00:00
|
|
|
/// Check whether the permissible sizes of keys set reached
|
2017-04-01 07:20:54 +00:00
|
|
|
bool checkSetSizeLimits() const;
|
|
|
|
|
2017-06-02 21:37:28 +00:00
|
|
|
/// Vector of ordered elements of `Set`.
|
|
|
|
/// It is necessary for the index to work on the primary key in the IN statement.
|
2017-04-01 07:20:54 +00:00
|
|
|
using OrderedSetElements = std::vector<Field>;
|
|
|
|
using OrderedSetElementsPtr = std::unique_ptr<OrderedSetElements>;
|
|
|
|
OrderedSetElementsPtr ordered_set_elements;
|
|
|
|
|
2017-06-02 21:37:28 +00:00
|
|
|
/** Protects work with the set in the functions `insertFromBlock` and `execute`.
|
|
|
|
* These functions can be called simultaneously from different threads only when using StorageSet,
|
|
|
|
* and StorageSet calls only these two functions.
|
|
|
|
* Therefore, the rest of the functions for working with set are not protected.
|
2017-04-01 07:20:54 +00:00
|
|
|
*/
|
2017-07-28 17:34:02 +00:00
|
|
|
mutable std::shared_mutex rwlock;
|
2017-04-01 07:20:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
template <typename Method>
|
|
|
|
void insertFromBlockImpl(
|
|
|
|
Method & method,
|
2017-12-13 01:27:53 +00:00
|
|
|
const ColumnRawPtrs & key_columns,
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t rows,
|
|
|
|
SetVariants & variants,
|
|
|
|
ConstNullMapPtr null_map);
|
|
|
|
|
|
|
|
template <typename Method, bool has_null_map>
|
|
|
|
void insertFromBlockImplCase(
|
|
|
|
Method & method,
|
2017-12-13 01:27:53 +00:00
|
|
|
const ColumnRawPtrs & key_columns,
|
2017-04-01 07:20:54 +00:00
|
|
|
size_t rows,
|
|
|
|
SetVariants & variants,
|
|
|
|
ConstNullMapPtr null_map);
|
|
|
|
|
|
|
|
template <typename Method>
|
|
|
|
void executeImpl(
|
|
|
|
Method & method,
|
2017-12-13 01:27:53 +00:00
|
|
|
const ColumnRawPtrs & key_columns,
|
2017-12-15 21:32:25 +00:00
|
|
|
ColumnUInt8::Container & vec_res,
|
2017-04-01 07:20:54 +00:00
|
|
|
bool negative,
|
|
|
|
size_t rows,
|
|
|
|
ConstNullMapPtr null_map) const;
|
|
|
|
|
|
|
|
template <typename Method, bool has_null_map>
|
|
|
|
void executeImplCase(
|
|
|
|
Method & method,
|
2017-12-13 01:27:53 +00:00
|
|
|
const ColumnRawPtrs & key_columns,
|
2017-12-15 21:32:25 +00:00
|
|
|
ColumnUInt8::Container & vec_res,
|
2017-04-01 07:20:54 +00:00
|
|
|
bool negative,
|
|
|
|
size_t rows,
|
|
|
|
ConstNullMapPtr null_map) const;
|
|
|
|
|
|
|
|
template <typename Method>
|
|
|
|
void executeArrayImpl(
|
|
|
|
Method & method,
|
2017-12-13 01:27:53 +00:00
|
|
|
const ColumnRawPtrs & key_columns,
|
2017-12-15 21:32:25 +00:00
|
|
|
const ColumnArray::Offsets & offsets,
|
|
|
|
ColumnUInt8::Container & vec_res,
|
2017-04-01 07:20:54 +00:00
|
|
|
bool negative,
|
|
|
|
size_t rows) const;
|
2012-08-22 20:29:01 +00:00
|
|
|
};
|
|
|
|
|
2016-05-28 10:35:44 +00:00
|
|
|
using SetPtr = std::shared_ptr<Set>;
|
|
|
|
using ConstSetPtr = std::shared_ptr<const Set>;
|
|
|
|
using Sets = std::vector<SetPtr>;
|
2012-08-22 20:29:01 +00:00
|
|
|
|
|
|
|
}
|