#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; }