2011-10-30 11:30:52 +00:00
|
|
|
|
#include <DB/IO/ConcatReadBuffer.h>
|
|
|
|
|
|
2014-10-10 15:45:43 +00:00
|
|
|
|
#include <DB/DataStreams/ProhibitColumnsBlockOutputStream.h>
|
2014-10-13 14:35:40 +00:00
|
|
|
|
#include <DB/DataStreams/MaterializingBlockOutputStream.h>
|
2013-10-25 14:56:47 +00:00
|
|
|
|
#include <DB/DataStreams/AddingDefaultBlockOutputStream.h>
|
2013-11-13 14:39:48 +00:00
|
|
|
|
#include <DB/DataStreams/PushingToViewsBlockOutputStream.h>
|
2014-11-08 23:52:18 +00:00
|
|
|
|
#include <DB/DataStreams/NullAndDoCopyBlockInputStream.h>
|
2011-10-30 11:30:52 +00:00
|
|
|
|
#include <DB/DataStreams/copyData.h>
|
|
|
|
|
|
|
|
|
|
#include <DB/Parsers/ASTInsertQuery.h>
|
|
|
|
|
#include <DB/Parsers/ASTSelectQuery.h>
|
|
|
|
|
#include <DB/Parsers/ASTIdentifier.h>
|
|
|
|
|
|
|
|
|
|
#include <DB/Interpreters/InterpreterSelectQuery.h>
|
|
|
|
|
#include <DB/Interpreters/InterpreterInsertQuery.h>
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
2012-03-05 00:09:41 +00:00
|
|
|
|
InterpreterInsertQuery::InterpreterInsertQuery(ASTPtr query_ptr_, Context & context_)
|
|
|
|
|
: query_ptr(query_ptr_), context(context_)
|
2011-10-30 11:30:52 +00:00
|
|
|
|
{
|
2014-01-03 08:20:13 +00:00
|
|
|
|
ProfileEvents::increment(ProfileEvents::InsertQuery);
|
2011-10-30 11:30:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
StoragePtr InterpreterInsertQuery::getTable()
|
|
|
|
|
{
|
2014-06-26 00:58:14 +00:00
|
|
|
|
ASTInsertQuery & query = typeid_cast<ASTInsertQuery &>(*query_ptr);
|
|
|
|
|
|
2011-10-30 11:30:52 +00:00
|
|
|
|
/// В какую таблицу писать.
|
2012-08-02 17:33:31 +00:00
|
|
|
|
return context.getTable(query.database, query.table);
|
2011-10-30 11:30:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-03-19 12:57:56 +00:00
|
|
|
|
Block InterpreterInsertQuery::getSampleBlock()
|
|
|
|
|
{
|
2014-06-26 00:58:14 +00:00
|
|
|
|
ASTInsertQuery & query = typeid_cast<ASTInsertQuery &>(*query_ptr);
|
2013-10-25 14:56:47 +00:00
|
|
|
|
|
|
|
|
|
/// Если в запросе не указана информация о столбцах
|
|
|
|
|
if (!query.columns)
|
2014-10-13 14:35:40 +00:00
|
|
|
|
return getTable()->getSampleBlockNonMaterialized();
|
|
|
|
|
|
|
|
|
|
Block db_sample = getTable()->getSampleBlock();
|
2013-10-25 14:56:47 +00:00
|
|
|
|
|
|
|
|
|
/// Формируем блок, основываясь на именах столбцов из запроса
|
|
|
|
|
Block res;
|
2013-11-15 09:43:50 +00:00
|
|
|
|
for (ASTs::iterator it = query.columns->children.begin(); it != query.columns->children.end(); ++ it)
|
2013-10-25 14:56:47 +00:00
|
|
|
|
{
|
|
|
|
|
std::string currentName = (*it)->getColumnName();
|
|
|
|
|
|
|
|
|
|
/// В таблице нет столбца с таким именем
|
2013-10-28 14:43:36 +00:00
|
|
|
|
if (!db_sample.has(currentName))
|
2013-12-18 11:19:36 +00:00
|
|
|
|
throw Exception("No such column " + currentName + " in table " + query.table, ErrorCodes::NO_SUCH_COLUMN_IN_TABLE);
|
2012-03-19 12:57:56 +00:00
|
|
|
|
|
2013-10-25 14:56:47 +00:00
|
|
|
|
ColumnWithNameAndType col;
|
|
|
|
|
col.name = currentName;
|
2013-10-28 14:43:36 +00:00
|
|
|
|
col.type = db_sample.getByName(col.name).type;
|
2013-10-25 14:56:47 +00:00
|
|
|
|
col.column = col.type->createColumn();
|
|
|
|
|
res.insert(col);
|
|
|
|
|
}
|
2014-06-26 00:58:14 +00:00
|
|
|
|
|
2013-10-25 14:56:47 +00:00
|
|
|
|
return res;
|
|
|
|
|
}
|
2012-03-19 12:57:56 +00:00
|
|
|
|
|
2012-01-09 19:20:48 +00:00
|
|
|
|
void InterpreterInsertQuery::execute(ReadBuffer * remaining_data_istr)
|
2011-10-30 11:30:52 +00:00
|
|
|
|
{
|
2014-06-26 00:58:14 +00:00
|
|
|
|
ASTInsertQuery & query = typeid_cast<ASTInsertQuery &>(*query_ptr);
|
2011-10-30 11:30:52 +00:00
|
|
|
|
StoragePtr table = getTable();
|
2014-03-19 10:45:13 +00:00
|
|
|
|
|
|
|
|
|
auto table_lock = table->lockStructure(true);
|
|
|
|
|
|
2014-10-10 15:45:43 +00:00
|
|
|
|
/** @note looks suspicious, first we ask to create block from NamesAndTypesList (internally in ITableDeclaration),
|
|
|
|
|
* then we compose the same list from the resulting block */
|
2014-10-13 14:35:40 +00:00
|
|
|
|
NamesAndTypesListPtr required_columns = new NamesAndTypesList(table->getColumnsList());
|
2014-04-29 20:22:57 +00:00
|
|
|
|
|
|
|
|
|
/// Создаем кортеж из нескольких стримов, в которые будем писать данные.
|
2014-10-10 15:45:43 +00:00
|
|
|
|
BlockOutputStreamPtr out{
|
|
|
|
|
new ProhibitColumnsBlockOutputStream{
|
|
|
|
|
new AddingDefaultBlockOutputStream{
|
2014-10-13 14:35:40 +00:00
|
|
|
|
new MaterializingBlockOutputStream{
|
|
|
|
|
new PushingToViewsBlockOutputStream{query.database, query.table, context, query_ptr}
|
|
|
|
|
},
|
2014-10-10 15:45:43 +00:00
|
|
|
|
required_columns, table->column_defaults, context
|
2014-10-13 14:35:40 +00:00
|
|
|
|
},
|
|
|
|
|
table->materialized_columns
|
2014-10-10 15:45:43 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
2011-10-30 11:30:52 +00:00
|
|
|
|
|
|
|
|
|
/// Какой тип запроса: INSERT VALUES | INSERT FORMAT | INSERT SELECT?
|
|
|
|
|
if (!query.select)
|
|
|
|
|
{
|
2014-10-10 15:45:43 +00:00
|
|
|
|
|
2011-10-30 11:30:52 +00:00
|
|
|
|
String format = query.format;
|
|
|
|
|
if (format.empty())
|
|
|
|
|
format = "Values";
|
|
|
|
|
|
2013-02-20 23:24:17 +00:00
|
|
|
|
/// Данные могут содержаться в распарсенной (query.data) и ещё не распарсенной (remaining_data_istr) части запроса.
|
|
|
|
|
|
2011-10-30 11:30:52 +00:00
|
|
|
|
ConcatReadBuffer::ReadBuffers buffers;
|
2013-02-20 23:24:17 +00:00
|
|
|
|
ReadBuffer buf1(const_cast<char *>(query.data), query.data ? query.end - query.data : 0, 0);
|
2011-10-30 11:30:52 +00:00
|
|
|
|
|
2013-02-20 23:24:17 +00:00
|
|
|
|
if (query.data)
|
|
|
|
|
buffers.push_back(&buf1);
|
2014-04-07 19:08:47 +00:00
|
|
|
|
buffers.push_back(remaining_data_istr);
|
|
|
|
|
|
|
|
|
|
/** NOTE Нельзя читать из remaining_data_istr до того, как прочтём всё между query.data и query.end.
|
|
|
|
|
* - потому что query.data может ссылаться на кусок памяти, использующийся в качестве буфера в remaining_data_istr.
|
|
|
|
|
*/
|
2011-10-30 11:30:52 +00:00
|
|
|
|
|
|
|
|
|
ConcatReadBuffer istr(buffers);
|
2014-09-24 18:06:24 +00:00
|
|
|
|
Block sample = getSampleBlock();
|
2011-10-30 11:30:52 +00:00
|
|
|
|
|
2014-10-10 15:45:43 +00:00
|
|
|
|
BlockInputStreamPtr in{
|
|
|
|
|
context.getFormatFactory().getInput(
|
|
|
|
|
format, istr, sample, context.getSettings().max_insert_block_size,
|
|
|
|
|
context.getDataTypeFactory())
|
|
|
|
|
};
|
2011-10-30 11:30:52 +00:00
|
|
|
|
copyData(*in, *out);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2012-03-05 00:09:41 +00:00
|
|
|
|
InterpreterSelectQuery interpreter_select(query.select, context);
|
2014-10-10 15:45:43 +00:00
|
|
|
|
BlockInputStreamPtr in{interpreter_select.execute()};
|
2013-10-25 14:56:47 +00:00
|
|
|
|
|
2011-10-30 11:30:52 +00:00
|
|
|
|
copyData(*in, *out);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-03-20 10:59:45 +00:00
|
|
|
|
BlockIO InterpreterInsertQuery::execute()
|
2012-03-11 08:52:56 +00:00
|
|
|
|
{
|
2014-06-26 00:58:14 +00:00
|
|
|
|
ASTInsertQuery & query = typeid_cast<ASTInsertQuery &>(*query_ptr);
|
2012-03-11 08:52:56 +00:00
|
|
|
|
StoragePtr table = getTable();
|
|
|
|
|
|
2014-03-19 10:45:13 +00:00
|
|
|
|
auto table_lock = table->lockStructure(true);
|
|
|
|
|
|
2014-10-13 14:35:40 +00:00
|
|
|
|
NamesAndTypesListPtr required_columns = new NamesAndTypesList(table->getColumnsList());
|
2013-11-13 14:39:48 +00:00
|
|
|
|
|
2013-11-15 09:43:50 +00:00
|
|
|
|
/// Создаем кортеж из нескольких стримов, в которые будем писать данные.
|
2014-10-10 15:45:43 +00:00
|
|
|
|
BlockOutputStreamPtr out{
|
|
|
|
|
new ProhibitColumnsBlockOutputStream{
|
|
|
|
|
new AddingDefaultBlockOutputStream{
|
2014-10-13 14:35:40 +00:00
|
|
|
|
new MaterializingBlockOutputStream{
|
|
|
|
|
new PushingToViewsBlockOutputStream{query.database, query.table, context, query_ptr}
|
|
|
|
|
},
|
2014-10-10 15:45:43 +00:00
|
|
|
|
required_columns, table->column_defaults, context
|
2014-10-13 14:35:40 +00:00
|
|
|
|
},
|
|
|
|
|
table->materialized_columns
|
2014-10-10 15:45:43 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
2012-03-11 08:52:56 +00:00
|
|
|
|
|
2014-03-20 10:59:45 +00:00
|
|
|
|
BlockIO res;
|
|
|
|
|
res.out_sample = getSampleBlock();
|
2014-03-19 10:45:13 +00:00
|
|
|
|
|
2012-03-11 08:52:56 +00:00
|
|
|
|
/// Какой тип запроса: INSERT или INSERT SELECT?
|
|
|
|
|
if (!query.select)
|
2014-03-20 10:59:45 +00:00
|
|
|
|
{
|
|
|
|
|
res.out = out;
|
|
|
|
|
}
|
2012-03-11 08:52:56 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2014-11-12 10:37:47 +00:00
|
|
|
|
InterpreterSelectQuery interpreter_select{query.select, context};
|
|
|
|
|
BlockInputStreamPtr in{interpreter_select.execute()};
|
|
|
|
|
res.in = new NullAndDoCopyBlockInputStream{in, out};
|
2012-03-11 08:52:56 +00:00
|
|
|
|
}
|
2014-03-20 10:59:45 +00:00
|
|
|
|
|
|
|
|
|
return res;
|
2012-03-11 08:52:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-10-30 11:30:52 +00:00
|
|
|
|
}
|