fix CH return.

This commit is contained in:
Brian Cao 2022-07-25 09:47:11 -07:00
parent af7c6f73b0
commit f189035a73
16 changed files with 40 additions and 34 deletions

View file

@ -10,8 +10,8 @@ import { getSessionByUuid } from 'queries';
export async function createSession(...args) {
return runAnalyticsQuery({
[`${RELATIONAL}`]: () => relationalQuery(...args),
[`${CLICKHOUSE}`]: () => clickhouseQuery(...args),
[RELATIONAL]: () => relationalQuery(...args),
[CLICKHOUSE]: () => clickhouseQuery(...args),
});
}