[
https://issues.apache.org/jira/browse/DRILL-8207?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17532730#comment-17532730
]
ASF GitHub Bot commented on DRILL-8207:
---------------------------------------
vdiravka commented on PR #2530:
URL: https://github.com/apache/drill/pull/2530#issuecomment-1119421766
Looks like we can be case insesitive here by adding:
```
ObjectMapper mapper = new ObjectMapper();
mapper.configure(MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES, true);
```
in
```
public LogicalPlanPersistence(DrillConfig conf, ScanResult scanResult,
ObjectMapper mapper) {
// The UI allows comments in JSON. Since we use the mapper
// here to serialize plugin configs to/from the pe
this.mapper = mapper
.configure(JsonParser.Feature.ALLOW_COMMENTS, true);
```
> Fix Username Typo in JDBC SerDe
> -------------------------------
>
> Key: DRILL-8207
> URL: https://issues.apache.org/jira/browse/DRILL-8207
> Project: Apache Drill
> Issue Type: Bug
> Reporter: Charles Givre
> Assignee: Charles Givre
> Priority: Blocker
>
> Fixes SerDe error with default JDBC plugin.
--
This message was sent by Atlassian Jira
(v8.20.7#820007)