Skip to content

Commit

Permalink
make resolve() idempotent
Browse files Browse the repository at this point in the history
  • Loading branch information
xitology committed Feb 7, 2024
1 parent 32c8495 commit a07a665
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/resolve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,9 @@ function resolve(n::PartitionNode, ctx)
Resolved(RowType(fields, group), over = n′)
end

resolve(n::ResolvedNode, ctx) =

Check warning on line 409 in src/resolve.jl

View check run for this annotation

Codecov / codecov/patch

src/resolve.jl#L409

Added line #L409 was not covered by tests
n

function resolve(n::SelectNode, ctx)
over′ = resolve(n.over, ctx)
t = row_type(over′)
Expand Down

0 comments on commit a07a665

Please sign in to comment.