Skip to content

Commit

Permalink
Revert method order
Browse files Browse the repository at this point in the history
  • Loading branch information
robbie-c committed Sep 28, 2023
1 parent 467a633 commit 5dd664d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions posthog/hogql_queries/query_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ def run(self, refresh_requested: bool) -> CachedQueryResponse:
def to_query(self) -> ast.SelectQuery:
raise NotImplementedError()

def to_persons_query(self) -> str:
# TODO: add support for selecting and filtering by breakdowns
raise NotImplementedError()

def to_hogql(self) -> str:
with self.timings.measure("to_hogql"):
return print_ast(
Expand All @@ -125,7 +129,3 @@ def _is_stale(self, cached_result_package):
@abstractmethod
def _refresh_frequency(self):
raise NotImplementedError()

def to_persons_query(self) -> str:
# TODO: add support for selecting and filtering by breakdowns
raise NotImplementedError()

0 comments on commit 5dd664d

Please sign in to comment.