Efficient local storage and Amazon S3-compatible data synchronization for time-series data,leveraging Parquet for storage and DataFusion for querying, all wrapped in a simple and intuitive API
Other
0
stars
0
forks
source link
Incorrect Storage of Integer Values in Schema Fields Defined as int #18
When certain fields in the schema are defined as int|float and others as int only, an issue occurs where values inserted into fields defined strictly as int are incorrectly stored as 0.
For example, consider the following schema for activitydetails:
When certain fields in the schema are defined as int|float and others as int only, an issue occurs where values inserted into fields defined strictly as int are incorrectly stored as 0.
For example, consider the following schema for activitydetails:
If step is set to accept only int values, trying to update the field with a value like 39 results in it being recorded and retrieved as 0 instead.