mirror of
https://github.com/nushell/nushell.git
synced 2025-08-10 11:38:05 +02:00
merge span (#4031)
This commit is contained in:
@ -21,7 +21,7 @@ pub fn compute_between_dataframes(
|
||||
if let (UntaggedValue::DataFrame(lhs), UntaggedValue::DataFrame(rhs)) =
|
||||
(&left.value, &right.value)
|
||||
{
|
||||
let operation_span = left.tag.span.until(right.tag.span);
|
||||
let operation_span = right.tag.span.merge(left.tag.span);
|
||||
match (lhs.is_series(), rhs.is_series()) {
|
||||
(true, true) => {
|
||||
let lhs = &lhs
|
||||
|
Reference in New Issue
Block a user