std::shared_ptr RecipesTableSchema()

in cpp/code/common.cc [58:61]


std::shared_ptr<arrow::Schema> RecipesTableSchema() {
  return arrow::schema({arrow::field("Recipe Name", arrow::utf8()),
                        arrow::field("Recipe Output", arrow::utf8())});
}