You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ma...@apache.org on 2017/09/08 20:17:50 UTC

nifi git commit: NIFI-4258 Corrected a bug with the 'Informix Unload Escape Disabled' CSV format. This closes #2090.

Repository: nifi
Updated Branches:
  refs/heads/master c9789adf2 -> e203358bf


NIFI-4258 Corrected a bug with the 'Informix Unload Escape Disabled' CSV format. This closes #2090.


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/e203358b
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/e203358b
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/e203358b

Branch: refs/heads/master
Commit: e203358bf34db53a6e21e505ec2854995a6b6f38
Parents: c9789ad
Author: Wesley-Lawrence <we...@gmail.com>
Authored: Tue Aug 15 16:53:27 2017 -0400
Committer: Mark Payne <ma...@hotmail.com>
Committed: Fri Sep 8 16:17:38 2017 -0400

----------------------------------------------------------------------
 .../src/main/java/org/apache/nifi/csv/CSVUtils.java                | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/e203358b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/csv/CSVUtils.java
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/csv/CSVUtils.java b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/csv/CSVUtils.java
index 99f877f..3f5dcf6 100644
--- a/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/csv/CSVUtils.java
+++ b/nifi-nar-bundles/nifi-standard-services/nifi-record-serialization-services-bundle/nifi-record-serialization-services/src/main/java/org/apache/nifi/csv/CSVUtils.java
@@ -33,7 +33,7 @@ public class CSVUtils {
     static final AllowableValue EXCEL = new AllowableValue("excel", "Microsoft Excel", "CSV data follows the format used by Microsoft Excel");
     static final AllowableValue TDF = new AllowableValue("tdf", "Tab-Delimited", "CSV data is Tab-Delimited instead of Comma Delimited");
     static final AllowableValue INFORMIX_UNLOAD = new AllowableValue("informix-unload", "Informix Unload", "The format used by Informix when issuing the UNLOAD TO file_name command");
-    static final AllowableValue INFORMIX_UNLOAD_CSV = new AllowableValue("informix-unload", "Informix Unload Escape Disabled",
+    static final AllowableValue INFORMIX_UNLOAD_CSV = new AllowableValue("informix-unload-csv", "Informix Unload Escape Disabled",
         "The format used by Informix when issuing the UNLOAD TO file_name command with escaping disabled");
     static final AllowableValue MYSQL = new AllowableValue("mysql", "MySQL Format", "CSV data follows the format used by MySQL");