1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Reformat all code to coding standard

This commit is contained in:
Andrew Hutchings
2017-10-26 17:18:17 +01:00
parent 4985f3456e
commit 01446d1e22
1296 changed files with 403852 additions and 353747 deletions

View File

@ -46,91 +46,103 @@ extern "C" void init_demangler(int, int, int);
using namespace execplan;
class ExecPlanTest : public CppUnit::TestFixture {
class ExecPlanTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE( ExecPlanTest );
CPPUNIT_TEST_SUITE( ExecPlanTest );
CPPUNIT_TEST( selectExecutionPlan14 );
CPPUNIT_TEST( selectExecutionPlan14 );
CPPUNIT_TEST_SUITE_END();
CPPUNIT_TEST_SUITE_END();
private:
public:
static void walkfnString(const ParseTree* n)
{
char *r;
static bool is_init = false;
const char* mname = typeid(*(n->data())).name();
if (!is_init)
{
::init_demangler(0, 0, 0);
is_init = true;
}
r = ::cplus_demangle_with_style(mname, 7, 27);
if (r != 0)
{
//cout << "mangle: " << mname << " demangle: " << r << endl;
::free(r);
}
if (typeid(*(n->data())) == typeid(SimpleFilter))
{
cout << "SimpleFilter: " << endl;
const SimpleFilter* sf = dynamic_cast<SimpleFilter*>(n->data());
const ReturnedColumn* lhs = sf->lhs();
const ReturnedColumn* rhs = sf->rhs();
const Operator* op = sf->op();
cout << '\t' << lhs->data() << ' ' << op->data() << ' ' << rhs->data();
cout << endl << "\t\t";
if (typeid(*lhs) == typeid(SimpleColumn))
{
cout << "SimpleColumn: " << lhs->data() << " / ";
}
else if (typeid(*lhs) == typeid(ConstantColumn))
{
cout << "ConstantColumn: " << lhs->data() << " / ";
}
else
{
cout << "UNK: " << lhs->data() << " / ";
}
cout << "Operator: " << op->data() << " / ";
if (typeid(*rhs) == typeid(SimpleColumn))
{
cout << "SimpleColumn: " << rhs->data();
}
else if (typeid(*rhs) == typeid(ConstantColumn))
{
cout << "ConstantColumn: " << rhs->data();
}
else
{
cout << "UNK: " << rhs->data();
}
}
else if (typeid(*(n->data())) == typeid(Operator))
{
cout << "Operator: ";
const Operator* op = dynamic_cast<Operator*>(n->data());
cout << '\t' << op->data();
}
else
{
cout << mname << " -x-: ";
}
cout << endl;
}
static void walkfnString(const ParseTree* n)
{
char* r;
static bool is_init = false;
const char* mname = typeid(*(n->data())).name();
void setUp() {
}
void tearDown() {
}
void selectExecutionPlan14() {
if (!is_init)
{
::init_demangler(0, 0, 0);
is_init = true;
}
cout <<
"SQL: select \
r = ::cplus_demangle_with_style(mname, 7, 27);
if (r != 0)
{
//cout << "mangle: " << mname << " demangle: " << r << endl;
::free(r);
}
if (typeid(*(n->data())) == typeid(SimpleFilter))
{
cout << "SimpleFilter: " << endl;
const SimpleFilter* sf = dynamic_cast<SimpleFilter*>(n->data());
const ReturnedColumn* lhs = sf->lhs();
const ReturnedColumn* rhs = sf->rhs();
const Operator* op = sf->op();
cout << '\t' << lhs->data() << ' ' << op->data() << ' ' << rhs->data();
cout << endl << "\t\t";
if (typeid(*lhs) == typeid(SimpleColumn))
{
cout << "SimpleColumn: " << lhs->data() << " / ";
}
else if (typeid(*lhs) == typeid(ConstantColumn))
{
cout << "ConstantColumn: " << lhs->data() << " / ";
}
else
{
cout << "UNK: " << lhs->data() << " / ";
}
cout << "Operator: " << op->data() << " / ";
if (typeid(*rhs) == typeid(SimpleColumn))
{
cout << "SimpleColumn: " << rhs->data();
}
else if (typeid(*rhs) == typeid(ConstantColumn))
{
cout << "ConstantColumn: " << rhs->data();
}
else
{
cout << "UNK: " << rhs->data();
}
}
else if (typeid(*(n->data())) == typeid(Operator))
{
cout << "Operator: ";
const Operator* op = dynamic_cast<Operator*>(n->data());
cout << '\t' << op->data();
}
else
{
cout << mname << " -x-: ";
}
cout << endl;
}
void setUp()
{
}
void tearDown()
{
}
void selectExecutionPlan14()
{
cout <<
"SQL: select \
100.00 * sum(decode(substring(p_type from 1 for 5),'%PROMO', \
l_extendedprice * ( 1 - l_discount), 0)) / \
sum(l_extendedprice * (1 - l_discount)) as promo_revenue \
@ -141,42 +153,42 @@ where \
;_partkey = p_partkey \
and l_shipdate >= '[DATE]' \
and l_receiptdate < '[DATE]' + interval '1' month;"
<< endl;
/* ---- This was the orginal query. The Program is using the alternative tpch Q14 code.
cout <<
"SQL: select \
100.00 * \
sum(case \
when p_type like '%PROMO%' \
then l_extendedprice * ( 1 - l_discount) \
else 0 \
end ) / sum (l_extendedprice * (1 - l_discount)) as promo_revenue \
from \
lineitem \
part \
where \
;_partkey = p_partkey \
and l_shipdate >= '1995-09-01' \
and l_receiptdate < '1995-0901' + interval '1' month;"
<< endl;
------- end of comment line --------- */
<< endl;
/* ---- This was the orginal query. The Program is using the alternative tpch Q14 code.
cout <<
"SQL: select \
100.00 * \
sum(case \
when p_type like '%PROMO%' \
then l_extendedprice * ( 1 - l_discount) \
else 0 \
end ) / sum (l_extendedprice * (1 - l_discount)) as promo_revenue \
from \
lineitem \
part \
where \
;_partkey = p_partkey \
and l_shipdate >= '1995-09-01' \
and l_receiptdate < '1995-0901' + interval '1' month;"
<< endl;
------- end of comment line --------- */
CalpontSelectExecutionPlan csep;
CalpontSelectExecutionPlan::ReturnedColumnList colList;
CalpontSelectExecutionPlan::GroupByColumnList groupbyList;
CalpontSelectExecutionPlan::OrderByColumnList orderbyList;
ParseTree* filterList;
// returned columns
//SimpleColumn l_shipmode("tpch.lineitem.l_shipmode");
AggregateColumn *promo_revenue = new AggregateColumn();
AggregateColumn* promo_revenue = new AggregateColumn();
promo_revenue->functionName("sum");
ArithmeticColumn *a3 = new ArithmeticColumn ("100.00 * sum(decode(substring(p_type from 1 for 5),'%PROMO', \
ArithmeticColumn* a3 = new ArithmeticColumn ("100.00 * sum(decode(substring(p_type from 1 for 5),'%PROMO', \
l_extendedprice * ( 1 - l_discount), 0)) / sum(l_extendedprice * (1 - l_discount))");
promo_revenue->functionParms(a3);
// Create the Projection
colList.push_back(promo_revenue);
@ -188,54 +200,54 @@ where \
//SimpleColumn l_receiptdate("tpch.lineitem.l_receiptdate");
//SimpleColumn l_receiptdate1("tpch.lineitem.l_receiptdate");
// filters
CalpontSelectExecutionPlan::Parser parser;
std::vector<Token> tokens;
//tokens.push_back(Token(new Operator("(")));
//tokens.push_back(Token(new Operator(")")));
tokens.push_back(Token(new SimpleFilter(new Operator(">="),
new SimpleColumn(l_shipdate),
new ConstantColumn("1995-09-01"))));
new SimpleColumn(l_shipdate),
new ConstantColumn("1995-09-01"))));
tokens.push_back(Token(new Operator("and")));
tokens.push_back(Token(new SimpleFilter(new Operator("<"),
new SimpleColumn(l_shipdate),
new ConstantColumn("1995-10-01"))));
new SimpleColumn(l_shipdate),
new ConstantColumn("1995-10-01"))));
filterList = parser.parse(tokens.begin(), tokens.end());
// draw filterList tree
filterList->drawTree("selectExecutionPlan14.dot");
// calpont execution plan
// calpont execution plan
csep.returnedCols (colList);
csep.filters (filterList);
cout << "\nCalpont Execution Plan:" << endl;
cout << csep << endl;
cout << " --- end of test 14 ---" << endl;
filterList->walk(walkfnString);
filterList->walk(walkfnString);
}
};
};
CPPUNIT_TEST_SUITE_REGISTRATION( ExecPlanTest );
#include <cppunit/extensions/TestFactoryRegistry.h>
#include <cppunit/ui/text/TestRunner.h>
int main( int argc, char **argv)
int main( int argc, char** argv)
{
CppUnit::TextUi::TestRunner runner;
CppUnit::TestFactoryRegistry &registry = CppUnit::TestFactoryRegistry::getRegistry();
runner.addTest( registry.makeTest() );
bool wasSuccessful = runner.run( "", false );
return (wasSuccessful ? 0 : 1);
CppUnit::TextUi::TestRunner runner;
CppUnit::TestFactoryRegistry& registry = CppUnit::TestFactoryRegistry::getRegistry();
runner.addTest( registry.makeTest() );
bool wasSuccessful = runner.run( "", false );
return (wasSuccessful ? 0 : 1);
}