Fix "name" alias for relational query to be compatible with Postgres 12. Closes #3970
Some checks are pending
Node.js CI / build (push) Waiting to run

This commit is contained in:
Francis Cao 2026-01-22 22:04:11 -08:00
parent d70152be38
commit 3f173889ea
6 changed files with 13 additions and 13 deletions

View file

@ -86,7 +86,7 @@ async function relationalQuery(
sum(${getTimestampDiffSQL('t.min_time', 't.max_time')}) as "totaltime"
from (
select
${column} as name,
${column} as "name",
website_event.session_id,
website_event.visit_id,
count(*) as "c",