You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@kylin.apache.org by GitBox <gi...@apache.org> on 2019/04/28 11:01:12 UTC

[GitHub] [kylin] majic31 opened a new pull request #623: KYLIN-3968 Customized precision doesn't work in web

majic31 opened a new pull request #623: KYLIN-3968 Customized precision doesn't work in web
URL: https://github.com/apache/kylin/pull/623
 
 
    In the cubeMeasures.js, It will withdraw precision and scale by using Regular Expression. The scale parameter is ok, but precision use the magic number 19.
   So we fixed it, In cubeMeasures.js, around line 469:
   
   “var precision = 19;”  --> "var precision = returnValue[2] || 0;"
   
   and we test ok including building cube and querying when the column is decimal(38,18). 

----------------------------------------------------------------
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


With regards,
Apache Git Services