kingeasternsun opened a new issue #903:
URL: https://github.com/apache/arrow-rs/issues/903


   **Describe the bug**
   A clear and concise description of what the bug is.
   https://docs.rs/arrow/6.0.0/arrow/csv/writer/index.html
   ```rust
   let schema = Schema::new(vec![
       Field::new("c1", DataType::Utf8, false),
       Field::new("c2", DataType::Float64, true),
       Field::new("c3", DataType::UInt32, false),
       Field::new("c3", DataType::Boolean, true),
   ]);
   ```
   shoud be 
   ```rust
   let schema = Schema::new(vec![
       Field::new("c1", DataType::Utf8, false),
       Field::new("c2", DataType::Float64, true),
       Field::new("c3", DataType::UInt32, false),
       Field::new("c4", DataType::Boolean, true),
   ]);
   ```
   
   **To Reproduce**
   Steps to reproduce the behavior:
   just open https://docs.rs/arrow/6.0.0/arrow/csv/writer/index.html
   
   **Expected behavior**
   A clear and concise description of what you expected to happen.
   https://docs.rs/arrow/6.0.0/arrow/csv/writer/index.html
   shoud be 
   ```rust
   let schema = Schema::new(vec![
       Field::new("c1", DataType::Utf8, false),
       Field::new("c2", DataType::Float64, true),
       Field::new("c3", DataType::UInt32, false),
       Field::new("c4", DataType::Boolean, true),
   ]);
   ```
   **Additional context**
   Add any other context about the problem here.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to