Skip to content

Commit

Permalink
Match poisson_cdf function signature with Presto. (#10555)
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: #10555

Reviewed By: kagamiori

Differential Revision: D60195184

fbshipit-source-id: 5fb7925dcbd1fe4506123752ab1a504609c7a754
  • Loading branch information
amitkdutta authored and facebook-github-bot committed Jul 25, 2024
1 parent 1c0cfac commit 6d33468
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,6 @@ void registerProbTrigFunctions(const std::string& prefix) {
{prefix + "inverse_beta_cdf"});
registerFunction<InverseNormalCDFFunction, double, double, double, double>(
{prefix + "inverse_normal_cdf"});
registerFunction<PoissonCDFFunction, double, double, int64_t>(
{prefix + "poisson_cdf"});
registerFunction<PoissonCDFFunction, double, double, int32_t>(
{prefix + "poisson_cdf"});
registerFunction<GammaCDFFunction, double, double, double, double>(
Expand Down
1 change: 0 additions & 1 deletion velox/functions/prestosql/tests/ProbabilityTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,6 @@ TEST_F(ProbabilityTest, gammaCDF) {

TEST_F(ProbabilityTest, poissonCDF) {
poissonCDFTests<int32_t>();
poissonCDFTests<int64_t>();
}

TEST_F(ProbabilityTest, binomialCDF) {
Expand Down

0 comments on commit 6d33468

Please sign in to comment.