2011-09-19 01:42:16 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <iomanip>
|
|
|
|
|
|
|
|
#include <Poco/Stopwatch.h>
|
|
|
|
|
|
|
|
#include <DB/DataTypes/DataTypesNumberFixed.h>
|
|
|
|
#include <DB/DataTypes/DataTypeString.h>
|
|
|
|
|
|
|
|
#include <DB/Columns/ColumnsNumber.h>
|
|
|
|
#include <DB/Columns/ColumnString.h>
|
|
|
|
|
|
|
|
#include <DB/DataStreams/IBlockInputStream.h>
|
|
|
|
|
2011-09-19 03:34:23 +00:00
|
|
|
#include <DB/Interpreters/Aggregator.h>
|
2011-09-19 01:42:16 +00:00
|
|
|
|
|
|
|
#include <DB/AggregateFunctions/AggregateFunctionFactory.h>
|
|
|
|
|
|
|
|
|
|
|
|
class OneBlockInputStream : public DB::IBlockInputStream
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
const DB::Block & block;
|
|
|
|
bool has_been_read;
|
|
|
|
public:
|
|
|
|
OneBlockInputStream(const DB::Block & block_) : block(block_), has_been_read(false) {}
|
|
|
|
|
|
|
|
DB::Block read()
|
|
|
|
{
|
|
|
|
if (!has_been_read)
|
|
|
|
{
|
|
|
|
has_been_read = true;
|
|
|
|
return block;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return DB::Block();
|
|
|
|
}
|
|
|
|
|
|
|
|
DB::String getName() const { return "OneBlockInputStream"; }
|
2011-10-24 12:10:59 +00:00
|
|
|
|
|
|
|
DB::BlockInputStreamPtr clone() { return new OneBlockInputStream(block); }
|
2011-09-19 01:42:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char ** argv)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
size_t n = argc == 2 ? atoi(argv[1]) : 10;
|
|
|
|
|
|
|
|
DB::Block block;
|
|
|
|
|
|
|
|
DB::ColumnWithNameAndType column_x;
|
|
|
|
column_x.name = "x";
|
|
|
|
column_x.type = new DB::DataTypeInt16;
|
|
|
|
DB::ColumnInt16 * x = new DB::ColumnInt16;
|
|
|
|
column_x.column = x;
|
|
|
|
std::vector<Int16> & vec_x = x->getData();
|
|
|
|
|
|
|
|
vec_x.resize(n);
|
|
|
|
for (size_t i = 0; i < n; ++i)
|
|
|
|
vec_x[i] = i % 9;
|
|
|
|
|
|
|
|
block.insert(column_x);
|
|
|
|
|
|
|
|
const char * strings[] = {"abc", "def", "abcd", "defg", "ac"};
|
|
|
|
|
|
|
|
DB::ColumnWithNameAndType column_s1;
|
|
|
|
column_s1.name = "s1";
|
|
|
|
column_s1.type = new DB::DataTypeString;
|
|
|
|
column_s1.column = new DB::ColumnString;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < n; ++i)
|
|
|
|
column_s1.column->insert(strings[i % 5]);
|
|
|
|
|
|
|
|
block.insert(column_s1);
|
|
|
|
|
|
|
|
DB::ColumnWithNameAndType column_s2;
|
|
|
|
column_s2.name = "s2";
|
|
|
|
column_s2.type = new DB::DataTypeString;
|
|
|
|
column_s2.column = new DB::ColumnString;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < n; ++i)
|
|
|
|
column_s2.column->insert(strings[i % 3]);
|
|
|
|
|
|
|
|
block.insert(column_s2);
|
|
|
|
|
|
|
|
DB::BlockInputStreamPtr stream = new OneBlockInputStream(block);
|
2011-09-26 07:25:22 +00:00
|
|
|
DB::AggregatedDataVariants aggregated_data_variants;
|
2011-09-19 01:42:16 +00:00
|
|
|
|
|
|
|
DB::ColumnNumbers key_column_numbers;
|
|
|
|
key_column_numbers.push_back(0);
|
|
|
|
key_column_numbers.push_back(1);
|
|
|
|
|
|
|
|
DB::AggregateFunctionFactory factory;
|
|
|
|
|
|
|
|
DB::AggregateDescriptions aggregate_descriptions(1);
|
2011-09-25 05:07:47 +00:00
|
|
|
|
|
|
|
DB::DataTypes empty_list_of_types;
|
|
|
|
aggregate_descriptions[0].function = factory.get("count", empty_list_of_types);
|
2011-09-19 01:42:16 +00:00
|
|
|
|
2011-09-19 03:34:23 +00:00
|
|
|
DB::Aggregator aggregator(key_column_numbers, aggregate_descriptions);
|
2011-09-19 01:42:16 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
Poco::Stopwatch stopwatch;
|
|
|
|
stopwatch.start();
|
|
|
|
|
2011-09-26 07:25:22 +00:00
|
|
|
aggregator.execute(stream, aggregated_data_variants);
|
2011-09-19 01:42:16 +00:00
|
|
|
|
|
|
|
stopwatch.stop();
|
|
|
|
std::cout << std::fixed << std::setprecision(2)
|
|
|
|
<< "Elapsed " << stopwatch.elapsed() / 1000000.0 << " sec."
|
|
|
|
<< ", " << n * 1000000 / stopwatch.elapsed() << " rows/sec."
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
|
2011-09-26 07:25:22 +00:00
|
|
|
DB::AggregatedData & aggregated_data = aggregated_data_variants.generic;
|
|
|
|
|
2011-09-19 01:42:16 +00:00
|
|
|
for (DB::AggregatedData::const_iterator it = aggregated_data.begin(); it != aggregated_data.end(); ++it)
|
|
|
|
{
|
|
|
|
for (DB::Row::const_iterator jt = it->first.begin(); jt != it->first.end(); ++jt)
|
|
|
|
std::cout << boost::apply_visitor(DB::FieldVisitorToString(), *jt) << '\t';
|
|
|
|
|
|
|
|
for (DB::AggregateFunctions::const_iterator jt = it->second.begin(); jt != it->second.end(); ++jt)
|
|
|
|
{
|
|
|
|
DB::Field result = (*jt)->getResult();
|
|
|
|
std::cout << boost::apply_visitor(DB::FieldVisitorToString(), result) << '\t';
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << '\n';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (const DB::Exception & e)
|
|
|
|
{
|
|
|
|
std::cerr << e.message() << std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|