Github user kavinderd commented on a diff in the pull request:
https://github.com/apache/incubator-hawq/pull/821#discussion_r72673496
--- Diff:
pxf/pxf-api/src/main/java/org/apache/hawq/pxf/api/utilities/ColumnDescriptor.java
---
@@ -89,11 +106,20 @@ public boolean isKeyColumn() {
return RECORD_KEY_NAME.equalsIgnoreCase(gpdbColumnName);
}
+ public boolean isProjected() {
+ return isProjected;
+ }
+
+ public void setProjected(boolean projected) {
+ isProjected = projected;
+ }
+
@Override
public String toString() {
return "ColumnDescriptor [gpdbColumnTypeCode=" +
gpdbColumnTypeCode
+ ", gpdbColumnName=" + gpdbColumnName
+ ", gpdbColumnTypeName=" + gpdbColumnTypeName
- + ", gpdbColumnIndex=" + gpdbColumnIndex + "]";
+ + ", gpdbColumnIndex=" + gpdbColumnIndex
+ + ", isProjected=" + isProjected + "]";
--- End diff --
Indent
---
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 [email protected] or file a JIRA ticket
with INFRA.
---