Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id AD65C200B96 for ; Thu, 6 Oct 2016 23:57:51 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id ABE9E160AED; Thu, 6 Oct 2016 21:57:51 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id EB58C160AC5 for ; Thu, 6 Oct 2016 23:57:50 +0200 (CEST) Received: (qmail 3024 invoked by uid 500); 6 Oct 2016 21:57:50 -0000 Mailing-List: contact commits-help@hawq.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hawq.incubator.apache.org Delivered-To: mailing list commits@hawq.incubator.apache.org Received: (qmail 3011 invoked by uid 99); 6 Oct 2016 21:57:50 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Oct 2016 21:57:50 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id BC9EFC7C7F for ; Thu, 6 Oct 2016 21:57:49 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -6.219 X-Spam-Level: X-Spam-Status: No, score=-6.219 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id 1-BXqEnF1iXk for ; Thu, 6 Oct 2016 21:57:48 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with SMTP id B13675F22E for ; Thu, 6 Oct 2016 21:57:47 +0000 (UTC) Received: (qmail 2985 invoked by uid 99); 6 Oct 2016 21:57:47 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 06 Oct 2016 21:57:47 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 26100DFF55; Thu, 6 Oct 2016 21:57:47 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: odiachenko@apache.org To: commits@hawq.incubator.apache.org Date: Thu, 06 Oct 2016 21:57:47 -0000 Message-Id: <252562c7f88d4d768ac9d008247eaab1@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/3] incubator-hawq git commit: HAWQ-1048. Do not send filter string on fragmenter call. archived-at: Thu, 06 Oct 2016 21:57:51 -0000 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 Authored: Thu Oct 6 14:53:18 2016 -0700 Committer: Oleksandr Diachenko 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);