summaryrefslogtreecommitdiff
path: root/src/backend/parser
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2025-09-08 10:07:14 +0900
committerMichael Paquier <michael@paquier.xyz>2025-09-08 10:07:14 +0900
commit43eb2c541941479714c11de9cfb7c67b54f1810d (patch)
treea64534522a8f27ae709f210951b00677dea133d0 /src/backend/parser
parent06473f5a344df8c9594ead90a609b86f6724cff8 (diff)
Update parser README to include parse_jsontable.c
The README was missing parse_jsontable.c which handles JSON_TABLE. Oversight in de3600452b61. Author: Karthik S <karthikselvaam@gmail.com> Discussion: https://postgr.es/m/CAK4gQD9gdcj+vq_FZGp=Rv-W+41v8_C7cmCUmDeu=cfrOdfXEw@mail.gmail.com Backpatch-through: 17
Diffstat (limited to 'src/backend/parser')
-rw-r--r--src/backend/parser/README1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/parser/README b/src/backend/parser/README
index e0c986a41ef..e26eb437a9f 100644
--- a/src/backend/parser/README
+++ b/src/backend/parser/README
@@ -20,6 +20,7 @@ parse_cte.c handle Common Table Expressions (WITH clauses)
parse_expr.c handle expressions like col, col + 3, x = 3 or x = 4
parse_enr.c handle ephemeral named rels (trigger transition tables, ...)
parse_func.c handle functions, table.column and column identifiers
+parse_jsontable.c handle JSON_TABLE
parse_merge.c handle MERGE
parse_node.c create nodes for various structures
parse_oper.c handle operators in expressions