mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 21:49:51 +01:00
447a18930f
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
45 lines
1.4 KiB
Python
45 lines
1.4 KiB
Python
from posthog.hogql.ast import SelectQuery, SelectSetQuery, Program
|
|
from posthog.hogql.base import AST
|
|
|
|
def parse_expr(expr: str, /, *, is_internal: bool = False) -> AST:
|
|
"""Parse the HogQL expression string into an AST.
|
|
|
|
If the expr `is_internal`, spans and notices won't be included in the AST.
|
|
"""
|
|
...
|
|
|
|
def parse_order_expr(expr: str, /, *, is_internal: bool = False) -> AST:
|
|
"""Parse the ORDER BY clause string into an AST.
|
|
|
|
If the expr `is_internal`, spans and notices won't be included in the AST.
|
|
"""
|
|
...
|
|
|
|
def parse_select(expr: str, /, *, is_internal: bool = False) -> SelectQuery | SelectSetQuery:
|
|
"""Parse the HogQL SELECT statement string into an AST.
|
|
|
|
If the expr `is_internal`, spans and notices won't be included in the AST.
|
|
"""
|
|
...
|
|
|
|
def parse_full_template_string(expr: str, /, *, is_internal: bool = False) -> AST:
|
|
"""Parse a Hog template string into an AST.
|
|
|
|
If the expr `is_internal`, spans and notices won't be included in the AST.
|
|
"""
|
|
...
|
|
|
|
def parse_string_literal_text(value: str, /) -> str:
|
|
"""Unquote the string (an identifier or a string literal).
|
|
|
|
If the expr is `internal`, spans and notices won't be included in the AST.
|
|
"""
|
|
...
|
|
|
|
def parse_program(source: str, /, *, is_internal: bool = False) -> Program:
|
|
"""Parse a Hog program.
|
|
|
|
If the expr `is_internal`, spans and notices won't be included in the AST.
|
|
"""
|
|
...
|