fix(chalice): fixed redundant event-names
This commit is contained in:
parent
99d62fa549
commit
c6a5ed6c3b
1 changed files with 2 additions and 1 deletions
|
|
@ -12,7 +12,8 @@ logger = logging.getLogger(__name__)
|
||||||
def get_events(project_id: int, page: schemas.PaginatedSchema):
|
def get_events(project_id: int, page: schemas.PaginatedSchema):
|
||||||
with ClickHouseClient() as ch_client:
|
with ClickHouseClient() as ch_client:
|
||||||
r = ch_client.format(
|
r = ch_client.format(
|
||||||
"""SELECT COUNT(1) OVER () AS total,
|
"""SELECT DISTINCT ON(event_name,auto_captured)
|
||||||
|
COUNT(1) OVER () AS total,
|
||||||
event_name AS name, display_name, description,
|
event_name AS name, display_name, description,
|
||||||
auto_captured
|
auto_captured
|
||||||
FROM product_analytics.all_events
|
FROM product_analytics.all_events
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue