[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/ciusji/sql_vectorization_compilation/master/src/bench.cpp [Back]  [Original]

#include "common/algebra/Operators.hpp"
#include "hyper/codegen/Translator.hpp"
#include 

using namespace std;
using namespace runtime;
using namespace algebra;

int main() {

  Relation test;
  test.name = "relname";
  test.insert("country", make_unique());

  auto scan = make_unique(test);
  Print print(move(scan), {"country"});

  hyper::Translator::produce(print, cout);
  return 0;
}

Web Proxy Viewer  |  New URL  |  Original Page