Repository: incubator-hawq Updated Branches: refs/heads/HAWQ-964 509aef120 -> 73273c2cc
HAWQ-1048. Do not send filter string on fragmenter call. Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/bbfde70d Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/bbfde70d Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/bbfde70d Branch: refs/heads/HAWQ-964 Commit: bbfde70d90ceece472a4c5df17761b0369b4936d Parents: dffc760 Author: Oleksandr Diachenko <[email protected]> Authored: Thu Oct 6 14:53:18 2016 -0700 Committer: Oleksandr Diachenko <[email protected]> Committed: Thu Oct 6 14:53:18 2016 -0700 ---------------------------------------------------------------------- src/backend/access/external/hd_work_mgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/bbfde70d/src/backend/access/external/hd_work_mgr.c ---------------------------------------------------------------------- diff --git a/src/backend/access/external/hd_work_mgr.c b/src/backend/access/external/hd_work_mgr.c index 6829de5..e7314f7 100644 --- a/src/backend/access/external/hd_work_mgr.c +++ b/src/backend/access/external/hd_work_mgr.c @@ -158,7 +158,7 @@ char** map_hddata_2gp_segments(char* uri, int total_segs, int working_segs, Rela inputData.headers = client_context.http_headers; inputData.gphduri = hadoop_uri; inputData.rel = relation; - inputData.filterstr = serializePxfFilterQuals(quals); /* We do supply filter data to the HTTP header */ + inputData.filterstr = NULL; /* We do not supply filter data to the HTTP header */ generate_delegation_token(&inputData); build_http_header(&inputData);
