We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca2a82a commit 252e327Copy full SHA for 252e327
1 file changed
apps/backend/src/lib/clickhouse.tsx
@@ -7,7 +7,7 @@ export function createClickhouseClient(authType: "admin" | "external", database?
7
url: getEnvVariable("STACK_CLICKHOUSE_URL"),
8
username: authType === "admin" ? getEnvVariable("STACK_CLICKHOUSE_ADMIN_USER") : "limited_user",
9
password: authType === "admin" ? getEnvVariable("STACK_CLICKHOUSE_ADMIN_PASSWORD") : getEnvVariable("STACK_CLICKHOUSE_EXTERNAL_PASSWORD"),
10
- database: getEnvVariable("STACK_CLICKHOUSE_DATABASE", "default"),
+ database
11
});
12
}
13
0 commit comments