From 7874e4659193db80c3a191e1945732e94834b1d3 Mon Sep 17 00:00:00 2001 From: "houzj.fnst" <63178771+sherlockcpp@users.noreply.github.com> Date: Thu, 9 Jul 2020 15:12:38 +0800 Subject: [PATCH 5/5] Update gram_minimal.y --- src/parser/gram_minimal.y | 1 + 1 file changed, 1 insertion(+) diff --git a/src/parser/gram_minimal.y b/src/parser/gram_minimal.y index 4f55735..20157d5 100644 --- a/src/parser/gram_minimal.y +++ b/src/parser/gram_minimal.y @@ -10919,6 +10919,7 @@ InsertStmtShort: { InsertStmt *insert = makeNode(InsertStmt); insert->relation = $4; + insert->withClause= $1; $$ = (Node *) insert; /* * Assign the node directly to the parsetree and exit the scanner -- 1.8.3.1