Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2131#discussion_r178571705
--- Diff:
core/src/main/java/org/apache/carbondata/core/datamap/TableDataMap.java ---
@@ -79,26 +80,27 @@
*
* @param segments
* @param filterExp
+ * @param readCommitted
* @return
*/
public List<ExtendedBlocklet> prune(List<Segment> segments,
FilterResolverIntf filterExp,
- List<PartitionSpec> partitions) throws IOException {
+ List<PartitionSpec> partitions, ReadCommitted readCommitted) throws
IOException {
--- End diff --
Can you explain what is ReadCommitted and why is it needed?
---