Skip to content

Commit

Permalink
fix example plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
buremba committed Feb 8, 2025
1 parent 1430436 commit fa4b6e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion universql/plugins/snow.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(self, session: "universql.protocol.session.UniverSQLSession"):
super().__init__(session)

def start_query(self, ast: typing.Optional[List[sqlglot.exp.Expression]], raw_query: str) -> UQuery:
return StageTransformer(ast, raw_query)
return StageTransformer(self.session, ast, raw_query)


# @register()
Expand Down

0 comments on commit fa4b6e9

Please sign in to comment.