public inbox for [email protected]
help / color / mirror / Atom feedFrom: Tatsuo Ishii <[email protected]>
To: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Subject: Re: Row pattern recognition
Date: Sun, 24 May 2026 17:11:39 +0900 (JST)
Message-ID: <[email protected]> (raw)
In-Reply-To: <[email protected]>
References: <[email protected]>
<CAAAe_zBdwAUDNs_WFdLkFF=ewhkDkv-AqizVEVzhsfremGFb4w@mail.gmail.com>
<[email protected]>
Hi Henson,
> Attached is the v47 patches for Row pattern recognition (SQL/RPR).
While looking into v47, I noticed that
raw_expression_tree_walker_impl() lacks tracking RPCommonSyntax and
its children nodes. Probably this does nothing wrong with RPR
functionalities but just for completeness I created a patch on top of
v47.
Regards,
--
Tatsuo Ishii
SRA OSS K.K.
English: http://www.sraoss.co.jp/index_en/
Japanese:http://www.sraoss.co.jp
diff --git a/src/backend/nodes/nodeFuncs.c b/src/backend/nodes/nodeFuncs.c
index 651d049cfa2..c8694726e3c 100644
--- a/src/backend/nodes/nodeFuncs.c
+++ b/src/backend/nodes/nodeFuncs.c
@@ -4612,6 +4612,8 @@ raw_expression_tree_walker_impl(Node *node,
return true;
if (WALK(wd->endOffset))
return true;
+ if (WALK(wd->rpCommonSyntax))
+ return true;
}
break;
case T_RangeSubselect:
@@ -4865,6 +4867,24 @@ raw_expression_tree_walker_impl(Node *node,
return true;
}
break;
+ case T_RPCommonSyntax:
+ {
+ RPCommonSyntax *rc = (RPCommonSyntax *) node;
+
+ if (WALK(rc->rpPattern))
+ return true;
+ if (WALK(rc->rpDefs))
+ return true;
+ }
+ break;
+ case T_RPRPatternNode:
+ {
+ RPRPatternNode *rp = (RPRPatternNode *) node;
+
+ if (WALK(rp->children))
+ return true;
+ }
+ break;
default:
elog(ERROR, "unrecognized node type: %d",
(int) nodeTag(node));
Attachments:
[text/plain] raw_expression_tree_walker_impl.txt (952B, 2-raw_expression_tree_walker_impl.txt)
download | inline diff:
diff --git a/src/backend/nodes/nodeFuncs.c b/src/backend/nodes/nodeFuncs.c
index 651d049cfa2..c8694726e3c 100644
--- a/src/backend/nodes/nodeFuncs.c
+++ b/src/backend/nodes/nodeFuncs.c
@@ -4612,6 +4612,8 @@ raw_expression_tree_walker_impl(Node *node,
return true;
if (WALK(wd->endOffset))
return true;
+ if (WALK(wd->rpCommonSyntax))
+ return true;
}
break;
case T_RangeSubselect:
@@ -4865,6 +4867,24 @@ raw_expression_tree_walker_impl(Node *node,
return true;
}
break;
+ case T_RPCommonSyntax:
+ {
+ RPCommonSyntax *rc = (RPCommonSyntax *) node;
+
+ if (WALK(rc->rpPattern))
+ return true;
+ if (WALK(rc->rpDefs))
+ return true;
+ }
+ break;
+ case T_RPRPatternNode:
+ {
+ RPRPatternNode *rp = (RPRPatternNode *) node;
+
+ if (WALK(rp->children))
+ return true;
+ }
+ break;
default:
elog(ERROR, "unrecognized node type: %d",
(int) nodeTag(node));
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: [email protected]
Cc: [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected]
Subject: Re: Row pattern recognition
In-Reply-To: <[email protected]>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox