This is an automated email from the ASF dual-hosted git repository.

joshinnis pushed a commit to branch developer-manual
in repository https://gitbox.apache.org/repos/asf/age-website.git


The following commit(s) were added to refs/heads/developer-manual by this push:
     new 7793594  Fix Function name
7793594 is described below

commit 7793594f18ca867b489932cd8a1f3bdb58ffdfb7
Author: Josh Innis <[email protected]>
AuthorDate: Sat Oct 15 16:40:58 2022 +0900

    Fix Function name
---
 docs/postgres/node.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/postgres/node.md b/docs/postgres/node.md
index 47ce7d9..281d6ab 100644
--- a/docs/postgres/node.md
+++ b/docs/postgres/node.md
@@ -152,7 +152,7 @@ The at points where the differences do matter, the NodeTag 
can be checked and th
        switch (nodeTag(node))
        {
                case T_FuncCall:
-                       result = transformColumnRef(pstate, (FuncCall *) node);
+                       result = transformFuncCallRef(pstate, (FuncCall *) 
node);
                        break;
                case T_A_Const:
                        result = (Node *) make_const(pstate, (A_Const *) node);

Reply via email to