PG and AGE math functions ambiguity #399
-
Hi everyone. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
A lot of PG functions can't be used directly due to differences between the Cypher specification and PG. This means that we either make our own functions or wrap PG functions or both. In order to eliminate the ambiguities (due to naming and compilation) between Cypher and PG names, we distinguish our functions with a prefix of age_ That is why there are two. If you look at the code, you'll see this as well. |
Beta Was this translation helpful? Give feedback.
A lot of PG functions can't be used directly due to differences between the Cypher specification and PG. This means that we either make our own functions or wrap PG functions or both.
In order to eliminate the ambiguities (due to naming and compilation) between Cypher and PG names, we distinguish our functions with a prefix of age_
That is why there are two. If you look at the code, you'll see this as well.