blob: 7b6e8368b825dbb5e502407386fa597bfa9aeb8f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
export const PRISMA = 'prisma';
export const POSTGRESQL = 'postgresql';
export const CLICKHOUSE = 'clickhouse';
export const KAFKA = 'kafka';
export const KAFKA_PRODUCER = 'kafka-producer';
// Fixes issue with converting bigint values
BigInt.prototype.toJSON = function () {
return Number(this);
};
export function getDatabaseType(url = process.env.DATABASE_URL) {
const type = url?.split(':')[0];
if (type === 'postgres') {
return POSTGRESQL;
}
return type;
}
export async function runQuery(queries: any) {
if (process.env.CLICKHOUSE_URL) {
if (queries[KAFKA]) {
return queries[KAFKA]();
}
return queries[CLICKHOUSE]();
}
const db = getDatabaseType();
if (db === POSTGRESQL) {
return queries[PRISMA]();
}
}
export function notImplemented() {
throw new Error('Not implemented.');
}
|