mattyb149 commented on code in PR #9382:
URL: https://github.com/apache/nifi/pull/9382#discussion_r1809468732
##########
nifi-extension-bundles/nifi-standard-bundle/nifi-standard-processors/src/main/java/org/apache/nifi/processors/standard/PutDatabaseRecord.java:
##########
@@ -277,6 +285,24 @@ public class PutDatabaseRecord extends AbstractProcessor {
.allowableValues("true", "false")
.defaultValue("true")
.build();
+ public static final PropertyDescriptor TRANSLATION_STRATEGY = new
PropertyDescriptor.Builder()
+ .required(true)
+ .name("Column Name Translation Strategy")
+ .description("The strategy used to normalize table column name")
Review Comment:
Do all the non-regex options uppercase the name for translation purposes? If
so that's fine but somewhere (maybe here) the doc should reflect that no matter
the strategy (unless possibly the new Regex one), the name will be uppercased
to do case-insensitive matching
--
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]