From c0c7068e9351319363a43a9d2c5f70910119da6c Mon Sep 17 00:00:00 2001 From: Rohit Bhagat Date: Mon, 25 Sep 2023 06:33:25 +0000 Subject: [PATCH] added schemaname attribute in AlterTableCmd to store schemaname of trigger Signed-off-by: Rohit Bhagat --- src/include/nodes/parsenodes.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index af9ecbb220e..0683ddfe828 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -2031,6 +2031,7 @@ typedef struct AlterTableCmd /* one subcommand of an ALTER TABLE */ DropBehavior behavior; /* RESTRICT or CASCADE for DROP cases */ bool missing_ok; /* skip error if missing? */ bool recurse; /* exec-time recursion */ + char *schemaname; } AlterTableCmd;