lokeshj1703 commented on code in PR #17601:
URL: https://github.com/apache/hudi/pull/17601#discussion_r2882318359
##########
hudi-hadoop-common/src/main/java/org/apache/parquet/avro/HoodieAvroReadSupport.java:
##########
@@ -36,19 +40,23 @@
*/
public class HoodieAvroReadSupport<T> extends AvroReadSupport<T> {
- public HoodieAvroReadSupport(GenericData model) {
+ private Option<MessageType> tableSchema;
+
+ public HoodieAvroReadSupport(GenericData model, Option<MessageType>
tableSchema) {
Review Comment:
Addressed
##########
hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/hudi/HoodieBaseRelation.scala:
##########
@@ -111,7 +111,12 @@ abstract class HoodieBaseRelation(val sqlContext:
SQLContext,
protected def tableName: String = metaClient.getTableConfig.getTableName
- protected lazy val conf: Configuration = new
Configuration(sqlContext.sparkContext.hadoopConfiguration)
+ protected lazy val conf: Configuration = {
+ val c = new Configuration(sqlContext.sparkContext.hadoopConfiguration)
Review Comment:
Addressed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]