2019-06-24 11:17:15 +00:00
|
|
|
#include "config_core.h"
|
2017-04-19 00:25:57 +00:00
|
|
|
#if USE_MYSQL
|
|
|
|
|
2019-08-21 02:28:04 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <Columns/ColumnNullable.h>
|
|
|
|
#include <Columns/ColumnString.h>
|
|
|
|
#include <Columns/ColumnsNumber.h>
|
|
|
|
#include <Common/assert_cast.h>
|
|
|
|
#include <IO/ReadHelpers.h>
|
|
|
|
#include <IO/WriteHelpers.h>
|
|
|
|
#include <ext/range.h>
|
|
|
|
#include "MySQLBlockInputStream.h"
|
2016-12-08 02:49:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
extern const int NUMBER_OF_COLUMNS_DOESNT_MATCH;
|
2016-12-08 02:49:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
MySQLBlockInputStream::MySQLBlockInputStream(
|
2019-08-03 11:02:40 +00:00
|
|
|
const mysqlxx::PoolWithFailover::Entry & entry_, const std::string & query_str, const Block & sample_block, const UInt64 max_block_size_, const bool auto_close_)
|
|
|
|
: entry{entry_}, query{this->entry->query(query_str)}, result{query.use()}, max_block_size{max_block_size_}, auto_close{auto_close_}
|
2016-12-08 02:49:04 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (sample_block.columns() != result.getNumFields())
|
2018-12-10 15:25:45 +00:00
|
|
|
throw Exception{"mysqlxx::UseQueryResult contains " + toString(result.getNumFields()) + " columns while "
|
|
|
|
+ toString(sample_block.columns()) + " expected",
|
|
|
|
ErrorCodes::NUMBER_OF_COLUMNS_DOESNT_MATCH};
|
2016-12-08 02:49:04 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
description.init(sample_block);
|
2016-12-08 02:49:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
using ValueType = ExternalResultDescription::ValueType;
|
|
|
|
|
2017-12-15 03:12:04 +00:00
|
|
|
void insertValue(IColumn & column, const ValueType type, const mysqlxx::Value & value)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
2019-08-03 11:02:40 +00:00
|
|
|
case ValueType::vtUInt8:
|
2019-08-21 02:28:04 +00:00
|
|
|
assert_cast<ColumnUInt8 &>(column).insertValue(value.getUInt());
|
2018-12-10 15:25:45 +00:00
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case ValueType::vtUInt16:
|
2019-08-21 02:28:04 +00:00
|
|
|
assert_cast<ColumnUInt16 &>(column).insertValue(value.getUInt());
|
2018-12-10 15:25:45 +00:00
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case ValueType::vtUInt32:
|
2019-08-21 02:28:04 +00:00
|
|
|
assert_cast<ColumnUInt32 &>(column).insertValue(value.getUInt());
|
2018-12-10 15:25:45 +00:00
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case ValueType::vtUInt64:
|
2019-08-21 02:28:04 +00:00
|
|
|
assert_cast<ColumnUInt64 &>(column).insertValue(value.getUInt());
|
2018-12-10 15:25:45 +00:00
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case ValueType::vtInt8:
|
2019-08-21 02:28:04 +00:00
|
|
|
assert_cast<ColumnInt8 &>(column).insertValue(value.getInt());
|
2018-12-10 15:25:45 +00:00
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case ValueType::vtInt16:
|
2019-08-21 02:28:04 +00:00
|
|
|
assert_cast<ColumnInt16 &>(column).insertValue(value.getInt());
|
2018-12-10 15:25:45 +00:00
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case ValueType::vtInt32:
|
2019-08-21 02:28:04 +00:00
|
|
|
assert_cast<ColumnInt32 &>(column).insertValue(value.getInt());
|
2018-12-10 15:25:45 +00:00
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case ValueType::vtInt64:
|
2019-08-21 02:28:04 +00:00
|
|
|
assert_cast<ColumnInt64 &>(column).insertValue(value.getInt());
|
2018-12-10 15:25:45 +00:00
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case ValueType::vtFloat32:
|
2019-08-21 02:28:04 +00:00
|
|
|
assert_cast<ColumnFloat32 &>(column).insertValue(value.getDouble());
|
2018-12-10 15:25:45 +00:00
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case ValueType::vtFloat64:
|
2019-08-21 02:28:04 +00:00
|
|
|
assert_cast<ColumnFloat64 &>(column).insertValue(value.getDouble());
|
2018-12-10 15:25:45 +00:00
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case ValueType::vtString:
|
2019-08-21 02:28:04 +00:00
|
|
|
assert_cast<ColumnString &>(column).insertData(value.data(), value.size());
|
2018-12-10 15:25:45 +00:00
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case ValueType::vtDate:
|
2019-08-21 02:28:04 +00:00
|
|
|
assert_cast<ColumnUInt16 &>(column).insertValue(UInt16(value.getDate().getDayNum()));
|
2018-12-10 15:25:45 +00:00
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case ValueType::vtDateTime:
|
2019-08-21 02:28:04 +00:00
|
|
|
assert_cast<ColumnUInt32 &>(column).insertValue(UInt32(value.getDateTime()));
|
2018-12-10 15:25:45 +00:00
|
|
|
break;
|
2019-08-03 11:02:40 +00:00
|
|
|
case ValueType::vtUUID:
|
2019-08-21 02:28:04 +00:00
|
|
|
assert_cast<ColumnUInt128 &>(column).insert(parse<UUID>(value.data(), value.size()));
|
2018-12-10 15:25:45 +00:00
|
|
|
break;
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
}
|
2017-12-15 03:12:04 +00:00
|
|
|
|
2018-12-10 15:25:45 +00:00
|
|
|
void insertDefaultValue(IColumn & column, const IColumn & sample_column) { column.insertFrom(sample_column, 0); }
|
2016-12-08 02:49:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Block MySQLBlockInputStream::readImpl()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
auto row = result.fetch();
|
|
|
|
if (!row)
|
2019-05-23 13:09:07 +00:00
|
|
|
{
|
2019-05-24 12:30:12 +00:00
|
|
|
if (auto_close)
|
|
|
|
entry.disconnect();
|
2017-04-01 07:20:54 +00:00
|
|
|
return {};
|
2019-05-23 13:09:07 +00:00
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-12-15 03:12:04 +00:00
|
|
|
MutableColumns columns(description.sample_block.columns());
|
2017-04-01 07:20:54 +00:00
|
|
|
for (const auto i : ext::range(0, columns.size()))
|
2017-12-15 03:12:04 +00:00
|
|
|
columns[i] = description.sample_block.getByPosition(i).column->cloneEmpty();
|
2017-04-01 07:20:54 +00:00
|
|
|
|
2017-07-21 06:35:58 +00:00
|
|
|
size_t num_rows = 0;
|
2017-04-01 07:20:54 +00:00
|
|
|
while (row)
|
|
|
|
{
|
|
|
|
for (const auto idx : ext::range(0, row.size()))
|
|
|
|
{
|
|
|
|
const auto value = row[idx];
|
|
|
|
if (!value.isNull())
|
2018-10-12 02:26:48 +00:00
|
|
|
{
|
|
|
|
if (description.types[idx].second)
|
|
|
|
{
|
2019-08-21 02:28:04 +00:00
|
|
|
ColumnNullable & column_nullable = assert_cast<ColumnNullable &>(*columns[idx]);
|
2018-10-12 02:26:48 +00:00
|
|
|
insertValue(column_nullable.getNestedColumn(), description.types[idx].first, value);
|
|
|
|
column_nullable.getNullMapData().emplace_back(0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
insertValue(*columns[idx], description.types[idx].first, value);
|
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
else
|
2018-10-12 02:09:47 +00:00
|
|
|
insertDefaultValue(*columns[idx], *description.sample_block.getByPosition(idx).column);
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
++num_rows;
|
|
|
|
if (num_rows == max_block_size)
|
|
|
|
break;
|
|
|
|
|
|
|
|
row = result.fetch();
|
|
|
|
}
|
2017-12-15 03:12:04 +00:00
|
|
|
return description.sample_block.cloneWithColumns(std::move(columns));
|
2016-12-08 02:49:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2017-04-19 00:25:57 +00:00
|
|
|
|
|
|
|
#endif
|