@@ -1572,6 +1572,10 @@ Returned GQLSTATUS code::
15721572Returned status description::
15731573warn: feature deprecated.
15741574The namespace used by the user-defined function `point.function` is deprecated.
1575+ 
1576+ Suggestions for improvement::
1577+ Change the namespace to a non-deprecated namespace e.g. `my.point.function` or `pointing.function`.
1578+ 
15751579====== 
15761580[.include-with-neo4j-code] 
15771581====== 
@@ -1582,7 +1586,7 @@ Query::
15821586RETURN point.function() AS result 
15831587---- 
15841588Description of the returned code::
1585- The namespace of the invoked function is deprecated. (point.function)
1589+ The namespace of the invoked user-defined  function is deprecated. (point.function)
15861590====== 
15871591===== 
15881592
@@ -1603,7 +1607,11 @@ Returned GQLSTATUS code::
16031607
16041608Returned status description::
16051609warn: feature deprecated.
1606- The namespace used by the procedure `point.procedure` is deprecated.
1610+ The namespace used by the user-defined procedure `point.procedure` is deprecated.
1611+ 
1612+ Suggestions for improvement::
1613+ Change the namespace to a non-deprecated namespace e.g. `my.point.procedure` or `pointing.procedure`.
1614+ 
16071615====== 
16081616[.include-with-neo4j-code] 
16091617====== 
@@ -1615,7 +1623,7 @@ CALL point.procedure() AS result
16151623RETURN result 
16161624---- 
16171625Description of the returned code::
1618- The namespace of the called procedure is deprecated. (point.procedure)
1626+ The namespace of the called user-defined  procedure is deprecated. (point.procedure)
16191627====== 
16201628===== 
16211629
@@ -1635,7 +1643,11 @@ Returned GQLSTATUS code::
16351643
16361644Returned status description::
16371645warn: feature deprecated.
1638- The namespace of the invoked function `coll.flatten` is deprecated and the function is shadowing an internal function.
1646+ The namespace of the invoked user-defined function `coll.flatten` is deprecated and the function is shadowing an internal function.
1647+ 
1648+ Suggestions for improvement::
1649+ Change the namespace to a non-deprecated namespace e.g. `my.coll.flatten` or `collection.flatten`.
1650+ 
16391651====== 
16401652[.include-with-neo4j-code] 
16411653====== 
@@ -1646,7 +1658,7 @@ Query::
16461658RETURN coll.flatten() AS result 
16471659---- 
16481660Description of the returned code::
1649- The namespace of the invoked function is deprecated and the function is shadowing an internal function. (coll.flatten)
1661+ The namespace of the invoked user-defined  function is deprecated and the function is shadowing an internal function. (coll.flatten)
16501662====== 
16511663===== 
16521664
0 commit comments