From 34484141b4cc9c485df9853a7350f9daa5ed6fb0 Mon Sep 17 00:00:00 2001 From: Karthik S Date: Fri, 5 Sep 2025 12:57:05 +0000 Subject: [PATCH] Update parser README to include parse_jsontable.c The README was missing parse_jsontable.c which handles JSON table expressions and the JSON_TABLE function. Add it to the file list with an appropriate description. --- src/backend/parser/README | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/parser/README b/src/backend/parser/README index e0c986a41e..dec207bbfd 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 expressions (JSON_TABLE function) parse_merge.c handle MERGE parse_node.c create nodes for various structures parse_oper.c handle operators in expressions -- 2.43.0