Github user weinan003 commented on a diff in the pull request:
https://github.com/apache/incubator-hawq/pull/1350#discussion_r178480017
--- Diff: contrib/vexecutor/execVScan.c ---
@@ -38,8 +40,8 @@ getVScanMethod(int tableType)
},
//PARQUETSCAN
{
- &ParquetScanNext, &BeginScanParquetRelation,
&EndScanParquetRelation,
- &ReScanParquetRelation, &MarkRestrNotAllowed,
&MarkRestrNotAllowed
+ &ParquetVScanNext, &BeginScanParquetRelation,
&EndScanParquetRelation,
+ NULL,NULL,NULL
--- End diff --
At present, we do not know what kinds of query can cover these function.
---