Compiling, probably wrapped too much?

This commit is contained in:
Sam Hedin 2020-03-28 00:22:27 +01:00
parent 6c59a452f1
commit 9a676d23af

View File

@ -75,7 +75,8 @@ pub fn count(
let mut file = File::create("headout").unwrap();
write!(file, "args: {:#?}", newrows).unwrap();
yield ReturnSuccess::value(UntaggedValue::int(rows.len()).into_value(name))
// yield ReturnSuccess::value(UntaggedValue::int(rows.len()).into_value(name))
yield ReturnSuccess::value(UntaggedValue::Table(newrows).into_value(name))
};
Ok(stream.to_output_stream())