pvary commented on a change in pull request #3242:
URL: https://github.com/apache/iceberg/pull/3242#discussion_r730764494
##########
File path: mr/src/main/java/org/apache/iceberg/mr/hive/TezUtil.java
##########
@@ -79,6 +82,22 @@ private static JobID getJobIDWithVertexAppended(JobID jobID,
String vertexId) {
}
}
+ private static boolean isVectorized(JobConf job) {
+ return HiveConf.getBoolVar(job,
HiveConf.ConfVars.HIVE_VECTORIZATION_ENABLED) &&
+ Utilities.getVectorizedRowBatchCtx(job) != null;
+ }
+
+ public static void ensureInMemoryDataModel(JobConf job) {
Review comment:
By my understanding this method is not for ensuring, but more like
setting the data model? Maybe `setInMemoryDataModel`?
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]