Create the final properties.
| 1438 | |
| 1439 | /// Create the final properties. |
| 1440 | std::shared_ptr<ArrowWriterProperties> build() { |
| 1441 | return std::shared_ptr<ArrowWriterProperties>(new ArrowWriterProperties( |
| 1442 | write_timestamps_as_int96_, coerce_timestamps_enabled_, coerce_timestamps_unit_, |
| 1443 | truncated_timestamps_allowed_, store_schema_, compliant_nested_types_, |
| 1444 | engine_version_, use_threads_, executor_, write_time_adjusted_to_utc_)); |
| 1445 | } |
| 1446 | |
| 1447 | private: |
| 1448 | bool write_timestamps_as_int96_; |
no outgoing calls