You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using this serde in my glue table however I see the json key are always getting converted to lowercase irrespective of original input.
I tried using case.insensitive" = "FALSE" but without the mapping as I donot need it to be part of separate column instead remain to be part of the payload column which is MAP<String,String>
For example:
"payload": {
"cpr_Rate": "10",
"type":"cpr"
}
is getting converted
"payload": {
"cpr_rate": "10",
"type":"cpr"
}
Is my understanding wrong to use case.insensitive" = "FALSE" separately without mapping.Is there any workaround I can do to handle this.
The text was updated successfully, but these errors were encountered:
I am using this serde in my glue table however I see the json key are always getting converted to lowercase irrespective of original input.
I tried using case.insensitive" = "FALSE" but without the mapping as I donot need it to be part of separate column instead remain to be part of the payload column which is MAP<String,String>
For example:
is getting converted
Is my understanding wrong to use case.insensitive" = "FALSE" separately without mapping.Is there any workaround I can do to handle this.
The text was updated successfully, but these errors were encountered: