Fix for schema selection in pg adapter.

This commit is contained in:
Mike Cao
2025-09-11 12:37:24 -07:00
parent 366c52d703
commit e610de383a
6 changed files with 22 additions and 11 deletions

View File

@@ -24,7 +24,7 @@ async function relationalQuery(websiteId: string) {
{ websiteId, startDate },
);
return result[0] ?? null;
return result?.[0] ?? null;
}
async function clickhouseQuery(websiteId: string): Promise<{ x: number }> {