andygrove commented on code in PR #17: URL: https://github.com/apache/datafusion-benchmarks/pull/17#discussion_r1825909134
########## tpcds/queries-spark/q35.sql: ########## @@ -7,19 +7,19 @@ select cd_marital_status, cd_dep_count, count(*) cnt1, + min(cd_dep_count), max(cd_dep_count), - stddev_samp(cd_dep_count), - stddev_samp(cd_dep_count), + avg(cd_dep_count), Review Comment: You are correct. I just checked the query description in the TPC-DS specification, and it does not use `stdev_sample.` I wonder if this was inadvertently checked in after some manual experimentation. Thanks for catching this! -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
