Skip to content

Commit 9583f53

Browse files
committed
dev
1 parent 58a6365 commit 9583f53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cubejs-query-orchestrator/src/orchestrator/QueryCache.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -585,14 +585,14 @@ export class QueryCache {
585585
case 'GET_TABLES_FOR_SCHEMAS':
586586
queue.logger('Getting tables for schemas', {
587587
dataSource: req.dataSource,
588-
schemas: params.schemas?.map(s => s.schema_name),
588+
schemaCount: params.schemas?.length || 0,
589589
requestId: req.requestId
590590
});
591591
return client.getTablesForSpecificSchemas(params.schemas);
592592
case 'GET_COLUMNS_FOR_TABLES':
593593
queue.logger('Getting columns for tables', {
594594
dataSource: req.dataSource,
595-
tables: params.tables?.map(t => `${t.schema_name}.${t.table_name}`),
595+
tableCount: params.tables?.length || 0,
596596
requestId: req.requestId
597597
});
598598
return client.getColumnsForSpecificTables(params.tables);

0 commit comments

Comments
 (0)