This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface HoodieRecordPayload<T extends HoodieRecordPayload> extends Serializable { | |
/*...*/ | |
// 2 new method we added | |
/** | |
* This method can tell HoodieBaseRelation if column prune can be applied for this payload implementation. | |
* By default, column prune will be used in MOR table using OverwriteWithLatestAvroPayload | |
* | |
* @return if this payload can apply column prune when query MOR table | |
*/ |