parent
70f29e028d
commit
5699638520
@ -1,19 +1,53 @@
|
||||
#include "./server/libaquery.h"
|
||||
#include <unordered_map>
|
||||
#include "./server/monetdb_conn.h"
|
||||
#include "./server/hasher.h"
|
||||
#include "./server/aggregations.h"
|
||||
__AQEXPORT__(int) dll_3V1c8v(Context* cxt) {
|
||||
using namespace std;
|
||||
using namespace types;
|
||||
auto server = static_cast<Server*>(cxt->alt_server);
|
||||
auto len_5Bixfq = server->cnt;
|
||||
auto mont_1Mz = ColRef<int>(len_5Bixfq, server->getCol(0));
|
||||
auto sales_2DN = ColRef<int>(len_5Bixfq, server->getCol(1));
|
||||
auto out_5Ffhnc = new TableInfo<int,double>("out_5Ffhnc");
|
||||
out_5Ffhnc->get_col<0>().initfrom(mont_1Mz);
|
||||
out_5Ffhnc->get_col<1>() = avgw(3, sales_2DN);
|
||||
print(*out_5Ffhnc);
|
||||
FILE* fp_57Mh6f = fopen("moving_avg_output.csv", "w");
|
||||
out_5Ffhnc->printall(";", "\n", nullptr, fp_57Mh6f);
|
||||
fclose(fp_57Mh6f);
|
||||
puts("done.");
|
||||
return 0;
|
||||
}
|
||||
__AQEXPORT__(int) dll_frRsQ7(Context* cxt) {
|
||||
using namespace std;
|
||||
using namespace types;
|
||||
auto server = static_cast<Server*>(cxt->alt_server);
|
||||
auto len_5JydG3 = server->cnt;
|
||||
auto mont_34m = ColRef<int>(len_5JydG3, server->getCol(0));
|
||||
auto sales_4wo = ColRef<int>(len_5JydG3, server->getCol(1));
|
||||
auto out_4Fsh6O = new TableInfo<int,ColRef<int>>("out_4Fsh6O");
|
||||
decltype(auto) col_4A04Hh = out_4Fsh6O->get_col<0>();
|
||||
decltype(auto) col_1S5CS2 = out_4Fsh6O->get_col<1>();
|
||||
auto t4HUjxwQ = mont_34m;
|
||||
typedef record<decays<decltype(t4HUjxwQ)::value_t>> record_type5PGugsV;
|
||||
unordered_map<record_type5PGugsV, vector_type<uint32_t>, transTypes<record_type5PGugsV, hasher>> g6HIDqpq;
|
||||
for (uint32_t ilq = 0; ilq < t4HUjxwQ.size; ++ilq){
|
||||
g6HIDqpq[forward_as_tuple(t4HUjxwQ[ilq])].emplace_back(ilq);
|
||||
}
|
||||
for (auto& i2M : g6HIDqpq) {
|
||||
auto &key_5JcLJMV = i2M.first;
|
||||
auto &val_yqDe0lt = i2M.second;
|
||||
col_4A04Hh.emplace_back(get<0>(key_5JcLJMV));
|
||||
|
||||
col_1S5CS2.emplace_back(minw(2, sales_4wo[val_yqDe0lt]));
|
||||
|
||||
extern "C" int __DLLEXPORT__ dllmain(Context* cxt) {
|
||||
using namespace std;
|
||||
using namespace types;
|
||||
auto server = static_cast<Server*>(cxt->alt_server);
|
||||
auto len_5sGusn = server->cnt;
|
||||
auto sumc_5IN = ColRef<__int128_t>(len_5sGusn, server->getCol(0));
|
||||
auto b_79y = ColRef<int>(len_5sGusn, server->getCol(1));
|
||||
auto d_4yS = ColRef<int>(len_5sGusn, server->getCol(2));
|
||||
auto out_kio0QJ = new TableInfo<__int128_t,int,int>("out_kio0QJ");
|
||||
out_kio0QJ->get_col<0>().initfrom(sumc_5IN);
|
||||
out_kio0QJ->get_col<1>().initfrom(b_79y);
|
||||
out_kio0QJ->get_col<2>().initfrom(d_4yS);
|
||||
print(*out_kio0QJ);
|
||||
}
|
||||
print(*out_4Fsh6O);
|
||||
FILE* fp_6UC6Yg = fopen("flatten.csv", "w");
|
||||
out_4Fsh6O->printall(",", "\n", nullptr, fp_6UC6Yg);
|
||||
fclose(fp_6UC6Yg);
|
||||
puts("done.");
|
||||
return 0;
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue