You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by jo...@apache.org on 2022/10/14 06:54:10 UTC

[age-website] branch developer-manual updated: Update node.md

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 06594c8  Update node.md
06594c8 is described below

commit 06594c8f9f15da3aea7e74b2d1abc22d0986fddb
Author: Josh Innis <Jo...@gmail.com>
AuthorDate: Fri Oct 14 15:54:06 2022 +0900

    Update node.md
---
 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 9635576..9ae5e74 100644
--- a/docs/postgres/node.md
+++ b/docs/postgres/node.md
@@ -155,7 +155,7 @@ The at points where the differences do matter, the NodeTag can be checked and th
 			result = transformColumnRef(pstate, (FuncCall *) node);
 			break;
 		case T_A_Const:
-			result = (Node *) make_const(pstate, (A_Const *) expr);
+			result = (Node *) make_const(pstate, (A_Const *) node);
 			break;
 ```