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 <[email protected]>
Authored: Thu Oct 6 14:55:13 2016 -0700
Committer: Oleksandr Diachenko <[email protected]>
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);

Reply via email to