add in dbg info so I can see what is being matched on

This commit is contained in:
Michael Angerman 2021-10-26 13:06:26 -07:00
parent 0f27249319
commit ca7ff37697

View file

@ -57,13 +57,19 @@ impl Command for Last {
let beginning_rows_to_skip = 2;
match input {
PipelineData::Stream(stream) => Ok(stream
PipelineData::Stream(stream) => {
dbg!("Stream");
Ok(stream
.skip(beginning_rows_to_skip.try_into().unwrap())
.into_pipeline_data()),
PipelineData::Value(Value::List { vals, .. }) => Ok(vals
.into_pipeline_data())
}
PipelineData::Value(Value::List { vals, .. }) => {
dbg!("Value");
Ok(vals
.into_iter()
.skip(beginning_rows_to_skip.try_into().unwrap())
.into_pipeline_data()),
.into_pipeline_data())
}
_ => {
dbg!("Fall to the bottom");
Ok(PipelineData::Value(Value::Nothing { span: call.head }))