imay commented on a change in pull request #3305: Add field context for string field keyword type URL: https://github.com/apache/incubator-doris/pull/3305#discussion_r407526745
########## File path: gensrc/thrift/PlanNodes.thrift ########## @@ -222,6 +222,18 @@ struct TEsScanNode { // {"city": "city.raw"} // use select city from table, if enable the docvalue, we will fetch the `city` field value from `city.raw` 3: optional map<string, string> docvalue_context + // used to indicate which string-type field predicate should used xxx.keyword etc. + // "k1": { + // "type": "text", + // "fields": { + // "keyword": { + // "type": "keyword", + // "ignore_above": 256 + // } + // } + // } + // k1 > 'abc' -> k1.keyword > 'abc' + 4: optional map<string, string> fields_context Review comment: You're right ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org