amoeba opened a new pull request, #4633:
URL: https://github.com/apache/arrow-adbc/pull/4633
If I have an manifest or profile that's invalid TOML, such as,
```toml
profile_version = 1
driver = not_a_valid_toml_value
```
I get a vague error:
> [Driver Manager] Could not open profile. Error while parsing value: could
not determine value type
It turns out the toml++ library can show the line and column number where
the parse error occurred. This PR adds that context if it's available so we get
a better error:
> [Driver Manager] Could not open profile. Error while parsing value: could
not determine value type (line 2, column 10).
--
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]