Skip to content

Commit 5e0b699

Browse files
committed
dev
1 parent 9dfddc5 commit 5e0b699

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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))

0 commit comments

Comments
 (0)