Skip to content

Commit

Permalink
disable by default for debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Vexler committed Jan 4, 2024
1 parent 82f87fa commit a84b7a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ private static Schema createRequestedSchema(Schema tableSchema, JobConf jobConf)
* `schema.on.read` and skip merge not implemented
*/
public static boolean useFilegroupReader(final JobConf jobConf) {
return jobConf.getBoolean(HoodieReaderConfig.FILE_GROUP_READER_ENABLED.key(), HoodieReaderConfig.FILE_GROUP_READER_ENABLED.defaultValue())
return jobConf.getBoolean(HoodieReaderConfig.FILE_GROUP_READER_ENABLED.key(), false)
&& !jobConf.getBoolean(HoodieCommonConfig.SCHEMA_EVOLUTION_ENABLE.key(), HoodieCommonConfig.SCHEMA_EVOLUTION_ENABLE.defaultValue())
&& !jobConf.getBoolean(HoodieRealtimeRecordReader.REALTIME_SKIP_MERGE_PROP, false);
}
Expand Down

0 comments on commit a84b7a8

Please sign in to comment.