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:48 UTC

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

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);