[GitHub] incubator-hawq pull request #965: HAWQ-1057. Skip SARG_PUSHDOWN parameter if...

2016-10-20 Thread sansanichfb
Github user sansanichfb closed the pull request at:

https://github.com/apache/incubator-hawq/pull/965


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] incubator-hawq pull request #965: HAWQ-1057. Skip SARG_PUSHDOWN parameter if...

2016-10-18 Thread sansanichfb
Github user sansanichfb commented on a diff in the pull request:

https://github.com/apache/incubator-hawq/pull/965#discussion_r83958060
  
--- Diff: 
pxf/pxf-hive/src/main/java/org/apache/hawq/pxf/plugins/hive/HiveORCAccessor.java
 ---
@@ -131,15 +139,20 @@ private void buildExpression(SearchArgument.Builder 
builder, List filter
 builder.startNot();
 break;
 }
-buildExpression(builder, ((LogicalFilter) 
f).getFilterList());
-builder.end();
+if (buildExpression(builder, ((LogicalFilter) 
f).getFilterList()))
--- End diff --

good catch, will add figure brackets.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] incubator-hawq pull request #965: HAWQ-1057. Skip SARG_PUSHDOWN parameter if...

2016-10-18 Thread sansanichfb
Github user sansanichfb commented on a diff in the pull request:

https://github.com/apache/incubator-hawq/pull/965#discussion_r83957988
  
--- Diff: 
pxf/pxf-hive/src/main/java/org/apache/hawq/pxf/plugins/hive/HiveORCAccessor.java
 ---
@@ -131,15 +139,20 @@ private void buildExpression(SearchArgument.Builder 
builder, List filter
 builder.startNot();
 break;
 }
-buildExpression(builder, ((LogicalFilter) 
f).getFilterList());
-builder.end();
+if (buildExpression(builder, ((LogicalFilter) 
f).getFilterList()))
+builder.end();
+else
+return false;
 } else {
-buildArgument(builder, f);
+if (!buildArgument(builder, f))
--- End diff --

We need to return false only if buildArgument(builder, f) call returned 
false, in case of true we want to proceed.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] incubator-hawq pull request #965: HAWQ-1057. Skip SARG_PUSHDOWN parameter if...

2016-10-18 Thread shivzone
Github user shivzone commented on a diff in the pull request:

https://github.com/apache/incubator-hawq/pull/965#discussion_r83951577
  
--- Diff: 
pxf/pxf-hive/src/main/java/org/apache/hawq/pxf/plugins/hive/HiveORCAccessor.java
 ---
@@ -131,15 +139,20 @@ private void buildExpression(SearchArgument.Builder 
builder, List filter
 builder.startNot();
 break;
 }
-buildExpression(builder, ((LogicalFilter) 
f).getFilterList());
-builder.end();
+if (buildExpression(builder, ((LogicalFilter) 
f).getFilterList()))
+builder.end();
+else
+return false;
 } else {
-buildArgument(builder, f);
+if (!buildArgument(builder, f))
--- End diff --

instead just return buildArgument(builder, f)


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] incubator-hawq pull request #965: HAWQ-1057. Skip SARG_PUSHDOWN parameter if...

2016-10-17 Thread sansanichfb
GitHub user sansanichfb opened a pull request:

https://github.com/apache/incubator-hawq/pull/965

HAWQ-1057. Skip SARG_PUSHDOWN parameter if any of filters isn't suppo…

…rted.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/sansanichfb/incubator-hawq HAWQ-1057

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/incubator-hawq/pull/965.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #965


commit 45cc696e5aaa6db297877a963ec6d4ff3650bbb3
Author: Oleksandr Diachenko 
Date:   2016-10-17T22:28:22Z

HAWQ-1057. Skip SARG_PUSHDOWN parameter if any of filters isn't supported.




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---