You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hawq.apache.org by od...@apache.org on 2016/10/06 21:57:47 UTC

[1/3] incubator-hawq git commit: HAWQ-1048. Do not send filter string on fragmenter call.

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 <od...@pivotal.io>
Authored: Thu Oct 6 14:53:18 2016 -0700
Committer: Oleksandr Diachenko <od...@pivotal.io>
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);
 	


[2/3] incubator-hawq git commit: HAWQ-1048. Do not send filter string on fragmenter call.

Posted by od...@apache.org.
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/2ebc98a1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/2ebc98a1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/2ebc98a1

Branch: refs/heads/HAWQ-964
Commit: 2ebc98a191f4086a10f79b1dc00b4bb6934a7e5f
Parents: bbfde70
Author: Oleksandr Diachenko <od...@pivotal.io>
Authored: Thu Oct 6 14:55:13 2016 -0700
Committer: Oleksandr Diachenko <od...@pivotal.io>
Committed: Thu Oct 6 14:55:13 2016 -0700

----------------------------------------------------------------------
 src/backend/access/external/pxffilters.c | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/2ebc98a1/src/backend/access/external/pxffilters.c
----------------------------------------------------------------------
diff --git a/src/backend/access/external/pxffilters.c b/src/backend/access/external/pxffilters.c
index 2ada44e..154babf 100644
--- a/src/backend/access/external/pxffilters.c
+++ b/src/backend/access/external/pxffilters.c
@@ -322,8 +322,6 @@ static char *
 pxf_serialize_filter_list(List *expressionItems)
 {
 
-	printf("Serializing filter list 1\n");
-
 	StringInfo	 resbuf;
 	ListCell	*lc = NULL;
 
@@ -333,8 +331,6 @@ pxf_serialize_filter_list(List *expressionItems)
 	resbuf = makeStringInfo();
 	initStringInfo(resbuf);
 
-	printf("Serializing filter list 2\n");
-
 	/*
 	 * Iterate through the expression items in the list and serialize them one after the other.
 	 */
@@ -398,8 +394,6 @@ pxf_serialize_filter_list(List *expressionItems)
 		}
 	}
 
-	printf("Serializing filter list 30\n");
-
 	if (resbuf->len == 0)
 	{
 		pfree(resbuf->data);


[3/3] incubator-hawq git commit: Merge branch 'HAWQ-1048' into HAWQ-964

Posted by od...@apache.org.
Merge branch 'HAWQ-1048' into HAWQ-964


Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/73273c2c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/73273c2c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/73273c2c

Branch: refs/heads/HAWQ-964
Commit: 73273c2cc286f556b3e6dd8f88e93469c343887c
Parents: 509aef1 2ebc98a
Author: Oleksandr Diachenko <od...@pivotal.io>
Authored: Thu Oct 6 14:57:18 2016 -0700
Committer: Oleksandr Diachenko <od...@pivotal.io>
Committed: Thu Oct 6 14:57:18 2016 -0700

----------------------------------------------------------------------
 src/backend/access/external/hd_work_mgr.c | 2 +-
 src/backend/access/external/pxffilters.c  | 6 ------
 2 files changed, 1 insertion(+), 7 deletions(-)
----------------------------------------------------------------------