snuyanzin commented on code in PR #3733: URL: https://github.com/apache/calcite/pull/3733#discussion_r1573881365
########## babel/src/test/resources/sql/redshift.iq: ########## @@ -308,24 +308,24 @@ EXPR$0 !ok # VAR_SAMP and VAR_POP -select var_samp(sal) from emp; +select var_samp(CAST(sal AS DECIMAL(12, 4))) from emp; EXPR$0 -1398313.873626374 +1398313.8736 !ok -select var_samp(distinct sal) from emp; +select var_samp(distinct CAST(sal AS DECIMAL(12, 4))) from emp; EXPR$0 -1512779.356060606 +1512779.3560 Review Comment: also seems an issue with rounding -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
