Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cpp/src/arrow/csv/options.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ struct ARROW_EXPORT ConvertOptions {

/// Create conversion options with default values, including conventional
/// values for `null_values`, `true_values` and `false_values`
///
/// Default null values: see http://crossbow.voltrondata.com/pr_docs/48048/cpp/csv.html#nulls
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can not link to the preview docs. Here, in the header file, we can actually add the list of the conventional null values. Then this section can be linked from the csv.html.

/// Default true values: `"1"`, `"True"`, `"TRUE"`, `"true"`,
/// Default false values: `"0"`, `"False"`, `"FALSE"`, `"false"`,
static ConvertOptions Defaults();

/// \brief Test that all set options are valid
Expand Down
Loading