We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cae4095 commit 86c8754Copy full SHA for 86c8754
datafusion/core/src/datasource/file_format/options.rs
@@ -234,7 +234,6 @@ impl<'a> CsvReadOptions<'a> {
234
/// By default this is set to false and will error if the CSV rows have different lengths
235
/// When set to true then it will allow records with less than the expected number of columns and fill the missing columns with nulls.
236
/// If the record’s schema is not nullable, then it will still return an error.
237
- /// See https://docs.rs/arrow/latest/arrow/csv/struct.ReaderBuilder.html#method.with_allow_truncated_rows
238
pub fn truncated_rows(mut self, truncated_rows: bool) -> Self {
239
self.truncated_rows = truncated_rows;
240
self
0 commit comments