@ -3433,7 +3433,7 @@ typedef struct AlterTSConfigurationStmt
typedef struct CreatePublicationStmt
typedef struct CreatePublicationStmt
{
{
NodeTag type ;
NodeTag type ;
char * pubname ; /* Name of of the publication */
char * pubname ; /* Name of the publication */
List * options ; /* List of DefElem nodes */
List * options ; /* List of DefElem nodes */
List * tables ; /* Optional list of tables to add */
List * tables ; /* Optional list of tables to add */
bool for_all_tables ; /* Special publication for all tables in db */
bool for_all_tables ; /* Special publication for all tables in db */
@ -3442,7 +3442,7 @@ typedef struct CreatePublicationStmt
typedef struct AlterPublicationStmt
typedef struct AlterPublicationStmt
{
{
NodeTag type ;
NodeTag type ;
char * pubname ; /* Name of of the publication */
char * pubname ; /* Name of the publication */
/* parameters used for ALTER PUBLICATION ... WITH */
/* parameters used for ALTER PUBLICATION ... WITH */
List * options ; /* List of DefElem nodes */
List * options ; /* List of DefElem nodes */
@ -3456,7 +3456,7 @@ typedef struct AlterPublicationStmt
typedef struct CreateSubscriptionStmt
typedef struct CreateSubscriptionStmt
{
{
NodeTag type ;
NodeTag type ;
char * subname ; /* Name of of the subscription */
char * subname ; /* Name of the subscription */
char * conninfo ; /* Connection string to publisher */
char * conninfo ; /* Connection string to publisher */
List * publication ; /* One or more publication to subscribe to */
List * publication ; /* One or more publication to subscribe to */
List * options ; /* List of DefElem nodes */
List * options ; /* List of DefElem nodes */
@ -3475,7 +3475,7 @@ typedef struct AlterSubscriptionStmt
{
{
NodeTag type ;
NodeTag type ;
AlterSubscriptionType kind ; /* ALTER_SUBSCRIPTION_OPTIONS, etc */
AlterSubscriptionType kind ; /* ALTER_SUBSCRIPTION_OPTIONS, etc */
char * subname ; /* Name of of the subscription */
char * subname ; /* Name of the subscription */
char * conninfo ; /* Connection string to publisher */
char * conninfo ; /* Connection string to publisher */
List * publication ; /* One or more publication to subscribe to */
List * publication ; /* One or more publication to subscribe to */
List * options ; /* List of DefElem nodes */
List * options ; /* List of DefElem nodes */
@ -3484,7 +3484,7 @@ typedef struct AlterSubscriptionStmt
typedef struct DropSubscriptionStmt
typedef struct DropSubscriptionStmt
{
{
NodeTag type ;
NodeTag type ;
char * subname ; /* Name of of the subscription */
char * subname ; /* Name of the subscription */
bool missing_ok ; /* Skip error if missing? */
bool missing_ok ; /* Skip error if missing? */
DropBehavior behavior ; /* RESTRICT or CASCADE behavior */
DropBehavior behavior ; /* RESTRICT or CASCADE behavior */
} DropSubscriptionStmt ;
} DropSubscriptionStmt ;