Re: confused with name in the pic

2022-10-26 Thread David G. Johnston
On Wed, Oct 26, 2022 at 2:13 AM jack...@gmail.com wrote: > typedef struct A_Expr > > > > { > > > > pg_node_attr(custom_read_write) > > > > NodeTag type; > > > > A_Expr_Kind kind; /* see above */ > > > > List *name; /* possibly-qualified name of operat

confused with name in the pic

2022-10-26 Thread jack...@gmail.com
typedef struct A_Expr { pg_node_attr(custom_read_write) NodeTag type; A_Expr_Kind kind;   /* see above */ List   *name;   /* possibly-qualified name of operator */ Node   *lexpr;  /* left argument, or NULL if none */ N