Skip to content

Commit

Permalink
fix: In Query Sync, use consistent flags to avoid mismatch between @@… (
Browse files Browse the repository at this point in the history
#6858)

* fix: In Query Sync, use consistent flags to avoid mismatch between @@-prefixed and other ones
  • Loading branch information
tpasternak authored Oct 8, 2024
1 parent 64f1ca3 commit 2b8210e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public abstract class QuerySpec implements Formattable {
// LINT.IfChanges
@Memoized
public ImmutableList<String> getQueryFlags() {
return ImmutableList.of("--output=streamed_proto", "--relative_locations=true");
return ImmutableList.of("--output=streamed_proto", "--relative_locations=true", "--consistent_labels=true");
}

@Memoized
Expand Down

0 comments on commit 2b8210e

Please sign in to comment.