Skip to content

Commit

Permalink
WIP[#21]: refacto splitting a query into CTEs
Browse files Browse the repository at this point in the history
  • Loading branch information
MohamedBsh committed Sep 22, 2024
1 parent 00c218c commit 9512a6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lea/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def _create_cte_views(
"""
Create InMemorySQLView objects for CTEs and the main query.
This method generates separate views for each CTE (Common Table Expression)
This method generates separate views for each CTE (Common Table Expression)
and the main query. It also sets up the dependencies between these views.
Args:
Expand All @@ -222,7 +222,7 @@ def _create_cte_views(
dependencies (dict[str, set[str]]): A dictionary of dependencies between CTEs and the main query.
Returns:
list[InMemorySQLView]: A list of InMemorySQLView objects, including all CTE views
list[InMemorySQLView]: A list of InMemorySQLView objects, including all CTE views
and the main view.
Note:
Expand Down

0 comments on commit 9512a6d

Please sign in to comment.