MCPcopy Create free account
hub / github.com/apache/datafusion / with_double_quote

Method with_double_quote

datafusion/common/src/config.rs:3239–3242  ·  view source on GitHub ↗

Set true to indicate that the CSV quotes should be doubled. - default to true

(mut self, double_quote: bool)

Source from the content-addressed store, hash-verified

3237 /// Set true to indicate that the CSV quotes should be doubled.
3238 /// - default to true
3239 pub fn with_double_quote(mut self, double_quote: bool) -> Self {
3240 self.double_quote = Some(double_quote);
3241 self
3242 }
3243
3244 /// Set the quote style for CSV writing.
3245 pub fn with_quote_style(mut self, quote_style: CsvQuoteStyle) -> Self {

Callers 2

try_fromMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected