mirror of https://github.com/apache/nifi.git
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:
parent
a2f6420f43
commit
357a8667f9
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue