-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Query plan with IN as Union fails to display plan graph in CloudKit console #2660
base: main
Are you sure you want to change the base?
Conversation
This reverts commit 3a5a44b.
Result of fdb-record-layer-pr on Linux CentOS 7
|
public String identifier(@Nonnull String bindingName) { | ||
Verify.verify(bindingName.startsWith(value)); | ||
return bindingName.substring(value.length()); | ||
public String identifier(@Nonnull final String bindingName) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So we want the old identifier method to also stay there since we want to allow callers to explicitly state the want to resolve an alias to an e.g. CORRELATION
. The old identifier()
should be renamed to let's say typedIdentifier()
and it should stay an instance method. This new identifier()
method should become static. All callers should call typedIdentifier()
, except the one you have where we don't know what it is.
@@ -205,7 +205,7 @@ public Set<CorrelationIdentifier> getCorrelatedTo() { | |||
|
|||
final var inAliases = getInSources() | |||
.stream() | |||
.map(inSource -> CorrelationIdentifier.of(Bindings.Internal.CORRELATION.identifier(inSource.getBindingName()))) | |||
.map(inSource -> CorrelationIdentifier.of(Bindings.Internal.identifier(inSource.getBindingName()))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
only this one is using the new identifier
Result of fdb-record-layer-pr on Linux CentOS 7
|
Result of fdb-record-layer-pr on Linux CentOS 7
|
No description provided.