NIFI-9663 Setting the "csv-escape" property has no effect in SelectHive3QL

Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com>

This closes #5756.
This commit is contained in:
Robert Kalmar 2022-02-10 10:05:37 +01:00 committed by Pierre Villard
parent a2f6420f43
commit 357a8667f9
No known key found for this signature in database
GPG Key ID: F92A93B30C07C6D5
1 changed files with 1 additions and 1 deletions

View File

@ -359,7 +359,7 @@ public class SelectHive3QL extends AbstractHive3QLProcessor {
final String altHeader = context.getProperty(HIVEQL_CSV_ALT_HEADER).evaluateAttributeExpressions(fileToProcess).getValue();
final String delimiter = context.getProperty(HIVEQL_CSV_DELIMITER).evaluateAttributeExpressions(fileToProcess).getValue();
final boolean quote = context.getProperty(HIVEQL_CSV_QUOTE).asBoolean();
final boolean escape = context.getProperty(HIVEQL_CSV_HEADER).asBoolean();
final boolean escape = context.getProperty(HIVEQL_CSV_ESCAPE).asBoolean();
final boolean useLogicalTypes = context.getProperty(USE_AVRO_LOGICAL_TYPES).asBoolean();
final String fragmentIdentifier = UUID.randomUUID().toString();