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 {
1053
1053
return 'empty' ;
1054
1054
}
1055
1055
1056
- // Create deterministic hash based on operation type and params
1057
1056
const hashData : string [ ] = [ ] ;
1058
1057
1059
1058
switch ( operation ) {
1060
1059
case MetadataOperation . GET_SCHEMAS :
1061
- // For schemas, we don't have any params to hash
1062
1060
return 'all_schemas' ;
1063
1061
1064
1062
case MetadataOperation . GET_TABLES_FOR_SCHEMAS :
@@ -1074,7 +1072,6 @@ export class QueryCache {
1074
1072
break ;
1075
1073
1076
1074
default :
1077
- // Fallback to JSON serialization for unknown operations
1078
1075
return crypto
1079
1076
. createHash ( 'sha256' )
1080
1077
. update ( JSON . stringify ( params ) )
You can’t perform that action at this time.
0 commit comments