TheBuilderJR commented on issue #13625:
URL: https://github.com/apache/datafusion/issues/13625#issuecomment-2515851344
@alamb yep that fixes it
```
let config = SessionConfig::new()
.set_bool("datafusion.execution.parquet.schema_force_view_types", false);
// Create a SessionState using the config and runtime_env
let state = SessionStateBuilder::new()
.with_config(config)
.with_default_features()
.build();
// Create a SessionContext
let ctx = SessionContext::from(state);
```
I think one small frustration I've had with datafusion is the amount of
backwards breaking changes. Is it fair to say that datafusion isn't ready for
production yet? Are there any active plans to add a more comprehensive test
suite so users can feel confident more confident with the updates? Or perhaps
are there any config settings that I can opt into that trades off stability for
performance?
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]