We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b81a32 commit 1cb8b8cCopy full SHA for 1cb8b8c
packages/cubejs-query-orchestrator/src/orchestrator/QueryOrchestrator.ts
@@ -442,7 +442,7 @@ export class QueryOrchestrator {
442
private createMetadataQuery(operation: string, params: Record<string, any>): QueryWithParams {
443
return [
444
`METADATA:${operation}`,
445
- // TODO: Metadata queries need object params like [{ schema, table }]
+ // TODO (@MikeNitsenko): Metadata queries need object params like [{ schema, table }]
446
// but QueryWithParams expects string[]. This forces JSON.stringify workaround.
447
[JSON.stringify(params)],
448
{ external: false, renewalThreshold: 24 * 60 * 60 }
0 commit comments