2017-04-01 09:19:00 +00:00
|
|
|
#include <IO/ConcatReadBuffer.h>
|
2019-02-07 13:18:04 +00:00
|
|
|
#include <IO/ReadBufferFromMemory.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
|
2017-07-13 20:58:19 +00:00
|
|
|
#include <Common/typeid_cast.h>
|
2019-08-10 17:51:47 +00:00
|
|
|
#include <Common/checkStackSize.h>
|
2017-07-13 20:58:19 +00:00
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <DataStreams/AddingDefaultBlockOutputStream.h>
|
2019-02-07 13:18:04 +00:00
|
|
|
#include <DataStreams/AddingDefaultsBlockInputStream.h>
|
2019-05-19 05:27:00 +00:00
|
|
|
#include <DataStreams/CheckConstraintsBlockOutputStream.h>
|
2019-02-07 13:18:04 +00:00
|
|
|
#include <DataStreams/OwningBlockInputStream.h>
|
2018-02-22 23:02:35 +00:00
|
|
|
#include <DataStreams/ConvertingBlockInputStream.h>
|
2019-02-07 13:18:04 +00:00
|
|
|
#include <DataStreams/CountingBlockOutputStream.h>
|
2017-12-20 07:39:52 +00:00
|
|
|
#include <DataStreams/NullAndDoCopyBlockInputStream.h>
|
|
|
|
#include <DataStreams/PushingToViewsBlockOutputStream.h>
|
|
|
|
#include <DataStreams/SquashingBlockOutputStream.h>
|
2019-02-08 13:24:24 +00:00
|
|
|
#include <DataStreams/InputStreamFromASTInsertQuery.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <DataStreams/copyData.h>
|
|
|
|
|
|
|
|
#include <Parsers/ASTInsertQuery.h>
|
2018-02-25 06:34:20 +00:00
|
|
|
#include <Parsers/ASTSelectWithUnionQuery.h>
|
2017-04-01 09:19:00 +00:00
|
|
|
|
|
|
|
#include <Interpreters/InterpreterInsertQuery.h>
|
2018-02-25 06:34:20 +00:00
|
|
|
#include <Interpreters/InterpreterSelectWithUnionQuery.h>
|
2011-10-30 11:30:52 +00:00
|
|
|
|
2017-11-02 14:01:11 +00:00
|
|
|
#include <TableFunctions/TableFunctionFactory.h>
|
|
|
|
#include <Parsers/ASTFunction.h>
|
2016-10-24 02:02:37 +00:00
|
|
|
|
2018-02-19 03:00:16 +00:00
|
|
|
|
2011-10-30 11:30:52 +00:00
|
|
|
namespace DB
|
|
|
|
{
|
2018-02-19 03:00:16 +00:00
|
|
|
|
2016-01-11 21:46:36 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int NO_SUCH_COLUMN_IN_TABLE;
|
2017-12-20 07:39:52 +00:00
|
|
|
extern const int READONLY;
|
2018-02-19 00:45:32 +00:00
|
|
|
extern const int ILLEGAL_COLUMN;
|
2016-01-11 21:46:36 +00:00
|
|
|
}
|
|
|
|
|
2011-10-30 11:30:52 +00:00
|
|
|
|
2018-01-12 13:03:19 +00:00
|
|
|
InterpreterInsertQuery::InterpreterInsertQuery(
|
2019-08-29 15:36:07 +00:00
|
|
|
const ASTPtr & query_ptr_, const Context & context_, bool allow_materialized_, bool no_squash_)
|
|
|
|
: query_ptr(query_ptr_), context(context_), allow_materialized(allow_materialized_), no_squash(no_squash_)
|
2011-10-30 11:30:52 +00:00
|
|
|
{
|
2019-08-10 17:51:47 +00:00
|
|
|
checkStackSize();
|
2011-10-30 11:30:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-19 00:45:32 +00:00
|
|
|
StoragePtr InterpreterInsertQuery::getTable(const ASTInsertQuery & query)
|
2011-10-30 11:30:52 +00:00
|
|
|
{
|
2017-11-02 14:01:11 +00:00
|
|
|
if (query.table_function)
|
|
|
|
{
|
2019-03-11 13:22:51 +00:00
|
|
|
const auto * table_function = query.table_function->as<ASTFunction>();
|
2017-11-02 14:01:11 +00:00
|
|
|
const auto & factory = TableFunctionFactory::instance();
|
2019-07-18 18:29:49 +00:00
|
|
|
TableFunctionPtr table_function_ptr = factory.get(table_function->name, context);
|
|
|
|
return table_function_ptr->execute(query.table_function, context, table_function_ptr->getName());
|
2017-11-02 14:01:11 +00:00
|
|
|
}
|
|
|
|
|
2018-02-19 03:00:16 +00:00
|
|
|
/// Into what table to write.
|
2017-04-01 07:20:54 +00:00
|
|
|
return context.getTable(query.database, query.table);
|
2011-10-30 11:30:52 +00:00
|
|
|
}
|
|
|
|
|
2018-02-19 00:45:32 +00:00
|
|
|
Block InterpreterInsertQuery::getSampleBlock(const ASTInsertQuery & query, const StoragePtr & table)
|
2017-11-02 14:01:11 +00:00
|
|
|
{
|
2018-09-20 12:59:33 +00:00
|
|
|
Block table_sample_non_materialized = table->getSampleBlockNonMaterialized();
|
2017-04-02 17:37:49 +00:00
|
|
|
/// If the query does not include information about columns
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!query.columns)
|
2018-09-20 12:59:33 +00:00
|
|
|
{
|
2019-09-10 16:31:41 +00:00
|
|
|
if (query.no_destination)
|
2019-06-18 16:32:37 +00:00
|
|
|
return table->getSampleBlockWithVirtuals();
|
2018-09-20 12:59:33 +00:00
|
|
|
else
|
|
|
|
return table_sample_non_materialized;
|
|
|
|
}
|
2013-10-25 14:56:47 +00:00
|
|
|
|
2018-09-20 12:59:33 +00:00
|
|
|
Block table_sample = table->getSampleBlock();
|
2017-04-02 17:37:49 +00:00
|
|
|
/// Form the block based on the column names from the query
|
2017-04-01 07:20:54 +00:00
|
|
|
Block res;
|
|
|
|
for (const auto & identifier : query.columns->children)
|
|
|
|
{
|
|
|
|
std::string current_name = identifier->getColumnName();
|
2013-10-25 14:56:47 +00:00
|
|
|
|
2017-04-02 17:37:49 +00:00
|
|
|
/// The table does not have a column with that name
|
2017-04-01 07:20:54 +00:00
|
|
|
if (!table_sample.has(current_name))
|
|
|
|
throw Exception("No such column " + current_name + " in table " + query.table, ErrorCodes::NO_SUCH_COLUMN_IN_TABLE);
|
2012-03-19 12:57:56 +00:00
|
|
|
|
2018-02-19 00:45:32 +00:00
|
|
|
if (!allow_materialized && !table_sample_non_materialized.has(current_name))
|
|
|
|
throw Exception("Cannot insert column " + current_name + ", because it is MATERIALIZED column.", ErrorCodes::ILLEGAL_COLUMN);
|
2014-06-26 00:58:14 +00:00
|
|
|
|
2018-02-19 00:45:32 +00:00
|
|
|
res.insert(ColumnWithTypeAndName(table_sample.getByName(current_name).type, current_name));
|
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
return res;
|
2013-10-25 14:56:47 +00:00
|
|
|
}
|
2012-03-19 12:57:56 +00:00
|
|
|
|
2011-10-30 11:30:52 +00:00
|
|
|
|
2014-03-20 10:59:45 +00:00
|
|
|
BlockIO InterpreterInsertQuery::execute()
|
2012-03-11 08:52:56 +00:00
|
|
|
{
|
2019-03-15 16:14:13 +00:00
|
|
|
const auto & query = query_ptr->as<ASTInsertQuery &>();
|
2017-12-20 07:39:52 +00:00
|
|
|
checkAccess(query);
|
2018-02-19 00:45:32 +00:00
|
|
|
StoragePtr table = getTable(query);
|
2012-03-11 08:52:56 +00:00
|
|
|
|
2019-08-31 12:18:14 +00:00
|
|
|
auto table_lock = table->lockStructureForShare(true, context.getInitialQueryId());
|
2014-03-19 10:45:13 +00:00
|
|
|
|
2017-04-02 17:37:49 +00:00
|
|
|
/// We create a pipeline of several streams, into which we will write data.
|
2017-04-01 07:20:54 +00:00
|
|
|
BlockOutputStreamPtr out;
|
2016-07-07 01:57:48 +00:00
|
|
|
|
2017-11-02 14:01:11 +00:00
|
|
|
out = std::make_shared<PushingToViewsBlockOutputStream>(query.database, query.table, table, context, query_ptr, query.no_destination);
|
2016-07-07 01:57:48 +00:00
|
|
|
|
2018-03-12 19:02:54 +00:00
|
|
|
/// Do not squash blocks if it is a sync INSERT into Distributed, since it lead to double bufferization on client and server side.
|
|
|
|
/// Client-side bufferization might cause excessive timeouts (especially in case of big blocks).
|
2019-08-29 15:36:07 +00:00
|
|
|
if (!(context.getSettingsRef().insert_distributed_sync && table->isRemote()) && !no_squash)
|
2018-03-11 18:36:09 +00:00
|
|
|
{
|
|
|
|
out = std::make_shared<SquashingBlockOutputStream>(
|
2019-06-18 16:32:37 +00:00
|
|
|
out, out->getHeader(), context.getSettingsRef().min_insert_block_size_rows, context.getSettingsRef().min_insert_block_size_bytes);
|
2018-03-11 18:36:09 +00:00
|
|
|
}
|
2019-02-08 13:24:24 +00:00
|
|
|
auto query_sample_block = getSampleBlock(query, table);
|
2012-03-11 08:52:56 +00:00
|
|
|
|
2018-09-20 11:40:04 +00:00
|
|
|
/// Actually we don't know structure of input blocks from query/table,
|
|
|
|
/// because some clients break insertion protocol (columns != header)
|
|
|
|
out = std::make_shared<AddingDefaultBlockOutputStream>(
|
2019-06-18 16:32:37 +00:00
|
|
|
out, query_sample_block, out->getHeader(), table->getColumns().getDefaults(), context);
|
2018-09-20 11:40:04 +00:00
|
|
|
|
2019-08-24 21:20:20 +00:00
|
|
|
if (const auto & constraints = table->getConstraints(); !constraints.empty())
|
|
|
|
out = std::make_shared<CheckConstraintsBlockOutputStream>(query.table,
|
|
|
|
out, query_sample_block, table->getConstraints(), context);
|
2019-05-19 05:27:00 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
auto out_wrapper = std::make_shared<CountingBlockOutputStream>(out);
|
|
|
|
out_wrapper->setProcessListElement(context.getProcessListElement());
|
|
|
|
out = std::move(out_wrapper);
|
2016-12-06 20:55:13 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
BlockIO res;
|
2018-02-19 03:00:16 +00:00
|
|
|
res.out = std::move(out);
|
2014-03-19 10:45:13 +00:00
|
|
|
|
2017-04-02 17:37:49 +00:00
|
|
|
/// What type of query: INSERT or INSERT SELECT?
|
2018-02-19 03:00:16 +00:00
|
|
|
if (query.select)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-02-23 06:37:53 +00:00
|
|
|
/// Passing 1 as subquery_depth will disable limiting size of intermediate result.
|
2019-03-15 15:57:18 +00:00
|
|
|
InterpreterSelectWithUnionQuery interpreter_select{query.select, context, SelectQueryOptions(QueryProcessingStage::Complete, 1)};
|
2016-08-25 12:38:47 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
res.in = interpreter_select.execute().in;
|
2017-04-21 10:25:29 +00:00
|
|
|
|
2018-02-23 01:00:47 +00:00
|
|
|
res.in = std::make_shared<ConvertingBlockInputStream>(context, res.in, res.out->getHeader(), ConvertingBlockInputStream::MatchColumnsMode::Position);
|
2018-02-19 03:00:16 +00:00
|
|
|
res.in = std::make_shared<NullAndDoCopyBlockInputStream>(res.in, res.out);
|
|
|
|
|
|
|
|
res.out = nullptr;
|
2018-02-19 00:45:32 +00:00
|
|
|
|
|
|
|
if (!allow_materialized)
|
|
|
|
{
|
|
|
|
Block in_header = res.in->getHeader();
|
2019-03-14 15:20:51 +00:00
|
|
|
for (const auto & column : table->getColumns())
|
|
|
|
if (column.default_desc.kind == ColumnDefaultKind::Materialized && in_header.has(column.name))
|
|
|
|
throw Exception("Cannot insert column " + column.name + ", because it is MATERIALIZED column.", ErrorCodes::ILLEGAL_COLUMN);
|
2018-02-19 00:45:32 +00:00
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2019-02-08 13:24:24 +00:00
|
|
|
else if (query.data && !query.has_tail) /// can execute without additional data
|
2019-02-07 13:18:04 +00:00
|
|
|
{
|
2019-05-30 20:12:44 +00:00
|
|
|
res.in = std::make_shared<InputStreamFromASTInsertQuery>(query_ptr, nullptr, query_sample_block, context, nullptr);
|
2019-02-07 13:18:04 +00:00
|
|
|
res.in = std::make_shared<NullAndDoCopyBlockInputStream>(res.in, res.out);
|
|
|
|
res.out = nullptr;
|
|
|
|
}
|
2014-03-20 10:59:45 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
return res;
|
2012-03-11 08:52:56 +00:00
|
|
|
}
|
|
|
|
|
2018-02-19 00:45:32 +00:00
|
|
|
|
2017-12-20 07:39:52 +00:00
|
|
|
void InterpreterInsertQuery::checkAccess(const ASTInsertQuery & query)
|
|
|
|
{
|
|
|
|
const Settings & settings = context.getSettingsRef();
|
2018-03-11 00:15:26 +00:00
|
|
|
auto readonly = settings.readonly;
|
2012-03-11 08:52:56 +00:00
|
|
|
|
2017-12-20 07:39:52 +00:00
|
|
|
if (!readonly || (query.database.empty() && context.tryGetExternalTable(query.table) && readonly >= 2))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw Exception("Cannot insert into table in readonly mode", ErrorCodes::READONLY);
|
|
|
|
}
|
2018-02-19 00:45:32 +00:00
|
|
|
|
2018-11-15 15:03:13 +00:00
|
|
|
std::pair<String, String> InterpreterInsertQuery::getDatabaseTable() const
|
2018-07-16 14:52:02 +00:00
|
|
|
{
|
2019-03-15 16:14:13 +00:00
|
|
|
const auto & query = query_ptr->as<ASTInsertQuery &>();
|
2018-11-15 15:03:13 +00:00
|
|
|
return {query.database, query.table};
|
2018-07-16 14:52:02 +00:00
|
|
|
}
|
|
|
|
|
2011-10-30 11:30:52 +00:00
|
|
|
}
|