bitnine-oss / agensgraph

AgensGraph, a transactional graph database based on PostgreSQL
http://www.agensgraph.org
Other
1.34k stars 149 forks source link

fix: Make all Cypher log() calls use ln(), the natural logarithm #473

Closed jrgemignani closed 5 years ago

jrgemignani commented 5 years ago

Notation: log10() refers to log base 10, ln() refers to log base e, the natural logarithm.

The issue -

A decision was made to make our implementation of Cypher mirror the standard. So, all Cypher log() function calls are to use ln() under the hood.

To do this the following was changed -

Note: This is a fix for AG-249

-jrg