aboutsummaryrefslogtreecommitdiff
path: root/protocol/src/main/protobuf
diff options
context:
space:
mode:
authorKunal Khatua <kunal@apache.org>2018-05-16 10:22:41 -0700
committerArina Ielchiieva <arina.yelchiyeva@gmail.com>2018-05-19 22:33:02 +0300
commit00290977bc0e39bd188ceb9fcf90f3813f8c6e5a (patch)
tree1cec7ee261d129a642f3334d5cf66b423e6547b4 /protocol/src/main/protobuf
parentb7d259ba9c8c2b28700c9da33bb97dd79ef04cbc (diff)
DRILL-5305: Query Profile must display Query ID
Introduced change to the Protobuf to inject the text-equivalent of the QueryID into the profile. This way, the profile's file name can be changed, but restored back based on this new field. The Profile UI also shows the Query ID, though this is not inferred from this new field, for sake of backward compatibility with older profiles. closes #1265
Diffstat (limited to 'protocol/src/main/protobuf')
-rw-r--r--protocol/src/main/protobuf/UserBitShared.proto1
1 files changed, 1 insertions, 0 deletions
diff --git a/protocol/src/main/protobuf/UserBitShared.proto b/protocol/src/main/protobuf/UserBitShared.proto
index 5b89a8196..14bfb8713 100644
--- a/protocol/src/main/protobuf/UserBitShared.proto
+++ b/protocol/src/main/protobuf/UserBitShared.proto
@@ -31,6 +31,7 @@ message UserCredentials {
message QueryId {
optional sfixed64 part1 = 1;
optional sfixed64 part2 = 2;
+ optional string text = 3;
}
message DrillPBError{