stoty commented on code in PR #5822:
URL: https://github.com/apache/hbase/pull/5822#discussion_r1566673341
##########
hbase-rest/src/main/java/org/apache/hadoop/hbase/rest/MultiRowResource.java:
##########
@@ -65,15 +73,33 @@ public MultiRowResource(TableResource tableResource, String
versions, String col
@GET
@Produces({ MIMETYPE_XML, MIMETYPE_JSON, MIMETYPE_PROTOBUF,
MIMETYPE_PROTOBUF_IETF })
public Response get(final @Context UriInfo uriInfo,
- final @HeaderParam("Encoding") String keyEncodingHeader) {
+ final @HeaderParam("Encoding") String keyEncodingHeader,
+ @QueryParam(Constants.SCAN_FILTER_B64) @Encoded String paramFilterB64,
Review Comment:
I have considered that, but you must not use a POST operation to read data
in a REST interface.
The HTTP operations must mutch the semantics of the call, otherwise it's not
a REST interface, just some kind of HTTP RPC interface.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]