2010-05-21 19:52:50 +00:00
|
|
|
#include <DB/Core/Exception.h>
|
|
|
|
#include <DB/Core/ErrorCodes.h>
|
|
|
|
|
|
|
|
#include <DB/DataStreams/BlockInputStreamFromRowInputStream.h>
|
2013-07-22 12:04:08 +00:00
|
|
|
#include <DB/DataTypes/DataTypeNested.h>
|
|
|
|
#include <DB/Columns/ColumnArray.h>
|
2010-05-21 19:52:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
using Poco::SharedPtr;
|
|
|
|
|
|
|
|
|
|
|
|
BlockInputStreamFromRowInputStream::BlockInputStreamFromRowInputStream(
|
2011-10-24 12:10:59 +00:00
|
|
|
RowInputStreamPtr row_input_,
|
2010-05-21 19:52:50 +00:00
|
|
|
const Block & sample_,
|
|
|
|
size_t max_block_size_)
|
2012-12-29 15:41:17 +00:00
|
|
|
: row_input(row_input_), sample(sample_), max_block_size(max_block_size_), total_rows(0)
|
2010-05-21 19:52:50 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-09-04 21:23:19 +00:00
|
|
|
Block BlockInputStreamFromRowInputStream::readImpl()
|
2010-05-24 16:52:58 +00:00
|
|
|
{
|
|
|
|
Block res;
|
2010-05-21 19:52:50 +00:00
|
|
|
|
2012-12-29 15:41:17 +00:00
|
|
|
try
|
2010-05-21 19:52:50 +00:00
|
|
|
{
|
2012-12-29 15:41:17 +00:00
|
|
|
for (size_t rows = 0; rows < max_block_size; ++rows, ++total_rows)
|
|
|
|
{
|
|
|
|
if (total_rows == 0)
|
|
|
|
row_input->readRowBetweenDelimiter();
|
2010-05-21 19:52:50 +00:00
|
|
|
|
2013-01-07 00:57:43 +00:00
|
|
|
Row row;
|
|
|
|
bool has_row = row_input->read(row);
|
2010-05-24 16:52:58 +00:00
|
|
|
|
2013-01-07 00:57:43 +00:00
|
|
|
if (!has_row)
|
2013-07-22 13:21:16 +00:00
|
|
|
break;
|
2010-05-21 19:52:50 +00:00
|
|
|
|
2012-12-29 15:41:17 +00:00
|
|
|
if (!res)
|
|
|
|
res = sample.cloneEmpty();
|
2010-05-21 19:52:50 +00:00
|
|
|
|
2012-12-29 15:41:17 +00:00
|
|
|
if (row.size() != sample.columns())
|
|
|
|
throw Exception("Number of columns doesn't match", ErrorCodes::NUMBER_OF_COLUMNS_DOESNT_MATCH);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < row.size(); ++i)
|
|
|
|
res.getByPosition(i).column->insert(row[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (const DB::Exception & e)
|
|
|
|
{
|
2013-06-21 20:34:19 +00:00
|
|
|
throw DB::Exception(e.message() + " (at row " + toString(total_rows + 1) + ")", e, e.code());
|
2010-05-21 19:52:50 +00:00
|
|
|
}
|
2013-07-22 12:04:08 +00:00
|
|
|
|
|
|
|
/// Указатели на столбцы-массивы, для проверки равенства столбцов смещений во вложенных структурах данных
|
|
|
|
typedef std::map<String, ColumnArray *> ArrayColumns;
|
|
|
|
ArrayColumns array_columns;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < res.columns(); ++i)
|
|
|
|
{
|
|
|
|
ColumnWithNameAndType & column = res.getByPosition(i);
|
|
|
|
|
|
|
|
if (ColumnArray * column_array = dynamic_cast<ColumnArray *>(&*column.column))
|
|
|
|
{
|
|
|
|
String name = DataTypeNested::extractNestedTableName(column.name);
|
|
|
|
|
|
|
|
ArrayColumns::const_iterator it = array_columns.find(name);
|
|
|
|
if (array_columns.end() == it)
|
|
|
|
array_columns[name] = column_array;
|
|
|
|
else
|
|
|
|
{
|
2013-07-22 16:49:19 +00:00
|
|
|
if (!it->second->hasEqualOffsets(*column_array))
|
2013-07-22 12:04:08 +00:00
|
|
|
throw Exception("Sizes of nested arrays do not match", ErrorCodes::SIZES_OF_ARRAYS_DOESNT_MATCH);
|
|
|
|
|
|
|
|
/// делаем так, чтобы столбцы смещений массивов внутри одной вложенной таблицы указывали в одно место
|
|
|
|
column_array->getOffsetsColumn() = it->second->getOffsetsColumn();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-05-24 16:52:58 +00:00
|
|
|
|
2010-05-21 19:52:50 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|