Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ private static String buildImmutableQueryPlanHashPrefix(String path, Set<String>
}

private static String buildImmutableQueryPlanHashSuffix(FetchConfig fetchConfig) {
return fetchConfig == null ? "" : "/c" + fetchConfig.hashCode();
return fetchConfig == null ? "}" : "/c" + fetchConfig.hashCode() + '}';
}

/**
Expand Down Expand Up @@ -468,7 +468,6 @@ public void queryPlanHash(StringBuilder builder) {
filterMany.queryPlanHash(builder);
}
builder.append(immutableHashSuffix);
builder.append('}');
}

private static void appendSet(StringBuilder builder, Set<String> values) {
Expand Down
Loading