Postgresql – Newly Created age_date() Function Not Recognized in Cypher Query
I created a new age_date() function using the following SQL and C code: SQL: CREATE FUNCTION ag_catalog.age_date() RETURNS cstring LANGUAGE c STABLE PARALLEL SAFE AS 'MODULE_PATHNAME'; C Code: Datum age_date(PG_FUNCTION_ARGS) { // Program Logic } After stopping and restarting the…