ITADN

Scaled float

#3170Openadvision-digital 创建于 2025-02-18
On Page https://www.elastic.co/guide/en/elasticsearch/reference/current/number.html `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: `{ "f": 100.0 } ` is not correct.
0 条评论