| 103 | /// plan. |
| 104 | struct ARROW_ENGINE_EXPORT ConversionOptions { |
| 105 | ConversionOptions() |
| 106 | : strictness(ConversionStrictness::BEST_EFFORT), |
| 107 | named_table_provider(kDefaultNamedTableProvider), |
| 108 | named_tap_provider(default_named_tap_provider()), |
| 109 | extension_provider(default_extension_provider()), |
| 110 | allow_arrow_extensions(false) {} |
| 111 | |
| 112 | /// \brief How strictly the converter should adhere to the structure of the input. |
| 113 | ConversionStrictness strictness; |
nothing calls this directly
no test coverage detected