Github user BryanCutler commented on a diff in the pull request:
https://github.com/apache/spark/pull/18659#discussion_r130408509
--- Diff:
sql/core/src/main/java/org/apache/spark/sql/execution/vectorized/ColumnarBatch.java
---
@@ -65,15 +65,44 @@
final Row row;
public static ColumnarBatch allocate(StructType schema, MemoryMode
memMode) {
- return new ColumnarBatch(schema, DEFAULT_BATCH_SIZE, memMode);
+ ColumnVector[] columns = allocateVectors(schema, DEFAULT_BATCH_SIZE,
memMode);
+ return create(schema, columns);
}
public static ColumnarBatch allocate(StructType type) {
- return new ColumnarBatch(type, DEFAULT_BATCH_SIZE,
DEFAULT_MEMORY_MODE);
+ ColumnVector[] columns = allocateVectors(type, DEFAULT_BATCH_SIZE,
DEFAULT_MEMORY_MODE);
+ return create(type, columns);
}
public static ColumnarBatch allocate(StructType schema, MemoryMode
memMode, int maxRows) {
- return new ColumnarBatch(schema, maxRows, memMode);
+ ColumnVector[] columns = allocateVectors(schema, maxRows, memMode);
+ return create(schema, columns);
+ }
+
+ private static ColumnVector[] allocateVectors(StructType schema, int
maxRows, MemoryMode memMode) {
+ ColumnVector[] columns = new ColumnVector[schema.size()];
+ for (int i = 0; i < schema.fields().length; ++i) {
+ StructField field = schema.fields()[i];
+ columns[i] = ColumnVector.allocate(maxRows, field.dataType(),
memMode);
+ }
+ return columns;
+ }
+
+ public static ColumnarBatch createReadOnly(
--- End diff --
ok, will do. I created https://issues.apache.org/jira/browse/SPARK-21583
for this
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]