File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/cubejs-query-orchestrator/src/orchestrator Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments