Skip to content

Commit

Permalink
fix(join): dereference literals in values of JoinChain
Browse files Browse the repository at this point in the history
  • Loading branch information
coroa committed Jul 15, 2024
1 parent 5b396e0 commit 3d9f13c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/expr/rewrites.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class DerefMap(Concrete, Traversable):
rels: VarTuple[ops.Relation]

"""Substitution mapping from values of earlier relations to the fields of `rels`."""
subs: FrozenDict[ops.Value, ops.Field]
subs: FrozenDict[ops.Value, ops.Field | ops.Literal]

"""Ambiguous field references."""
ambigs: FrozenDict[ops.Value, VarTuple[ops.Value]]
Expand Down

0 comments on commit 3d9f13c

Please sign in to comment.