[
https://issues.apache.org/jira/browse/BEAM-4453?focusedWorklogId=120071&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-120071
]
ASF GitHub Bot logged work on BEAM-4453:
----------------------------------------
Author: ASF GitHub Bot
Created on: 06/Jul/18 21:19
Start Date: 06/Jul/18 21:19
Worklog Time Spent: 10m
Work Description: apilloud commented on a change in pull request #5873:
[BEAM-4453] Add schema support for Java POJOs and Java Beans
URL: https://github.com/apache/beam/pull/5873#discussion_r200769726
##########
File path: sdks/java/core/src/main/java/org/apache/beam/sdk/values/Row.java
##########
@@ -51,38 +54,29 @@
* {see @link Schema#getRowCoder()}.
*/
@Experimental
-@AutoValue
public abstract class Row implements Serializable {
- /** Creates a {@link Row} from the list of values and {@link #getSchema()}.
*/
- public static <T> Collector<T, List<Object>, Row> toRow(Schema schema) {
- return Collector.of(
- () -> new ArrayList<>(schema.getFieldCount()),
- List::add,
- (left, right) -> {
- left.addAll(right);
- return left;
- },
- values -> Row.withSchema(schema).addValues(values).build());
- }
+ private Schema schema;
Review comment:
`final`?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 120071)
Time Spent: 3h 40m (was: 3.5h)
> Provide automatic schema registration for POJOs
> -----------------------------------------------
>
> Key: BEAM-4453
> URL: https://issues.apache.org/jira/browse/BEAM-4453
> Project: Beam
> Issue Type: Sub-task
> Components: sdk-java-core
> Reporter: Reuven Lax
> Assignee: Reuven Lax
> Priority: Major
> Time Spent: 3h 40m
> Remaining Estimate: 0h
>
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)