You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@iotdb.apache.org by GitBox <gi...@apache.org> on 2020/08/14 02:43:30 UTC

[GitHub] [incubator-iotdb] qiaojialin opened a new issue #1619: Treat all values in Scientific notation as Floating String (将科学计数法格式识别成了小数)

qiaojialin opened a new issue #1619:
URL: https://github.com/apache/incubator-iotdb/issues/1619


   ![image](https://user-images.githubusercontent.com/7240743/90207233-4d8eb180-de18-11ea-8cc5-94af976138de.png)
   
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-iotdb] qiaojialin edited a comment on issue #1619: Treat all values in Scientific notation as Floating String (将科学计数法格式都识别成了小数)

Posted by GitBox <gi...@apache.org>.
qiaojialin edited a comment on issue #1619:
URL: https://github.com/apache/incubator-iotdb/issues/1619#issuecomment-673854019


   In iotdb-engine.properties, there are two configs that control the infer type of a string.
   
   // register time series as which type when receiving an integer string "67"
   integer_string_infer_type=FLOAT
   // register time series as which type when receiving a floating number string "6.7"
   floating_string_infer_type=FLOAT
   
   Before inter type, we first classify the numeric string as integer_string or floating_string.
   
   For Scientific notation, we should classify  1.34464E3 as floating_string and  1.34464E7 as integer_string.
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-iotdb] qiaojialin commented on issue #1619: Treat all values in Scientific notation as Floating String (将科学计数法格式都识别成了小数)

Posted by GitBox <gi...@apache.org>.
qiaojialin commented on issue #1619:
URL: https://github.com/apache/incubator-iotdb/issues/1619#issuecomment-673854019


   In iotdb-engine.properties, there are two configs that control the infer type of a string.
   
   # register time series as which type when receiving an integer string "67"
   integer_string_infer_type=FLOAT
   # register time series as which type when receiving a floating number string "6.7"
   floating_string_infer_type=FLOAT
   
   Before inter type, we first classify the numeric string as integer_string or floating_string.
   
   For Scientific notation, we should classify  1.34464E3 as floating_string and  1.34464E7 as integer_string.
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [incubator-iotdb] qiaojialin edited a comment on issue #1619: Treat all values in Scientific notation as Floating String (将科学计数法格式都识别成了小数)

Posted by GitBox <gi...@apache.org>.
qiaojialin edited a comment on issue #1619:
URL: https://github.com/apache/incubator-iotdb/issues/1619#issuecomment-673854019


   In iotdb-engine.properties, there are two configs that control the infer type of a string.
   
   // register time series as which type when receiving an integer string "67"
   integer_string_infer_type=FLOAT
   // register time series as which type when receiving a floating number string "6.7"
   floating_string_infer_type=FLOAT
   
   Before inter type, we first classify the numeric string as integer_string or floating_string.
   
   For Scientific notation, we treat them all as floating string.
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org