chenboat commented on code in PR #12788:
URL: https://github.com/apache/pinot/pull/12788#discussion_r1552462015
##########
pinot-segment-local/src/main/java/org/apache/pinot/segment/local/recordtransformer/CompositeTransformer.java:
##########
@@ -78,7 +78,8 @@ public class CompositeTransformer implements
RecordTransformer {
*/
public static List<RecordTransformer> getDefaultTransformers(TableConfig
tableConfig, Schema schema) {
return Stream.of(new ExpressionTransformer(tableConfig, schema), new
FilterTransformer(tableConfig),
- new SchemaConformingTransformer(tableConfig, schema), new
DataTypeTransformer(tableConfig, schema),
+ new SchemaConformingTransformer(tableConfig, schema),
+ new SchemaConformingTransformerV2(tableConfig, schema), new
DataTypeTransformer(tableConfig, schema),
Review Comment:
update the javadoc for this new transformer too.
--
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]