From c8f4215ac5f9b4d17d36545cea0ac6f2abfb2002 Mon Sep 17 00:00:00 2001 From: pierwill <19642016+pierwill@users.noreply.github.com> Date: Mon, 14 Oct 2019 15:29:41 -0700 Subject: [PATCH] Document data types should be specified in column order (#6526) --- plugins/parsers/csv/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/parsers/csv/README.md b/plugins/parsers/csv/README.md index ec1ffa1ca..1881248ee 100644 --- a/plugins/parsers/csv/README.md +++ b/plugins/parsers/csv/README.md @@ -29,6 +29,7 @@ values. ## For assigning explicit data types to columns. ## Supported types: "int", "float", "bool", "string". + ## Specify types in order by column (e.g. `["string", "int", "float"]`) ## If this is not specified, type conversion will be done on the types above. csv_column_types = []