confused with name in the pic - Mailing list pgsql-hackers

From jacktby@gmail.com
Subject confused with name in the pic
Date
Msg-id 2022102617092233240416@gmail.com
Whole thread Raw
Responses Re: confused with name in the pic  ("David G. Johnston" <david.g.johnston@gmail.com>)
List pgsql-hackers
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 */



    Node       *rexpr;          /* right argument, or NULL if none */



    int         location;       /* token location, or -1 if unknown */



} A_Expr;



I run a sql like select a,b from t3 where a > 1; and I get the parseTree for selectStmt:



why the name is '-' but not '>'?







jacktby@gmail.com



Attachment

pgsql-hackers by date:

Previous
From: David Rowley
Date:
Subject: Re: Use LIMIT instead of Unique for DISTINCT when all distinct pathkeys are redundant
Next
From: Bharath Rupireddy
Date:
Subject: Re: Suppressing useless wakeups in walreceiver