Scaled float
Open
- Dominant language
- Ruby
- Stars
- 265
- Forks
- 347
- Avg merge
- 3d 15h
- Merged PRs (30d)
- 2
Description
On Page https://www.elastic.co/guide/en/elasticsearch/reference/current/number.html
```json
PUT idx
{
"settings": {
"index": {
"mapping": {
"source": {
"mode": "synthetic"
}
}
}
},
"mappings": {
"properties": {
"f": { "type": "scaled_float", "scaling_factor": 0.01 }
}
}
}
PUT idx/_doc/1
{
"f": 123
}
```
The given result:
```json
{
"f": 100.0
}
```
is not correct.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.