File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
packages/cubejs-query-orchestrator/src/orchestrator Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -1053,12 +1053,10 @@ export class QueryCache {
10531053 return 'empty' ;
10541054 }
10551055
1056- // Create deterministic hash based on operation type and params
10571056 const hashData : string [ ] = [ ] ;
10581057
10591058 switch ( operation ) {
10601059 case MetadataOperation . GET_SCHEMAS :
1061- // For schemas, we don't have any params to hash
10621060 return 'all_schemas' ;
10631061
10641062 case MetadataOperation . GET_TABLES_FOR_SCHEMAS :
@@ -1074,7 +1072,6 @@ export class QueryCache {
10741072 break ;
10751073
10761074 default :
1077- // Fallback to JSON serialization for unknown operations
10781075 return crypto
10791076 . createHash ( 'sha256' )
10801077 . update ( JSON . stringify ( params ) )
You can’t perform that action at this time.
0 commit comments