-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix
UInt*
inferred type mapping (#609)
There's been a bug in case sensitivity - `UInt8` from ClickHouse has defaulted to `text` field in our case. I'm letting unsigned integers being just integers in ES response for now. We could also make these `unsigned_long`s... The inconsistency here is that we currently translate integers from CH to longs in ES. **So perhaps we should translate unsigned integers from CH to unsigned longs in ES (and completely ditch the `integer` type)?** I'm open to your suggestions here.
- Loading branch information
Showing
3 changed files
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters