| From: | "jacktby(at)gmail(dot)com" <jacktby(at)gmail(dot)com> |
|---|---|
| To: | pgsql-hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org> |
| Subject: | confused with name in the pic |
| Date: | 2022-10-26 09:13:49 |
| Message-ID: | 2022102617092233240416@gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | 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(at)gmail(dot)com
| Attachment | Content-Type | Size |
|---|---|---|
| 1.png | application/octet-stream | 80.7 KB |
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Bharath Rupireddy | 2022-10-26 09:35:20 | Re: Suppressing useless wakeups in walreceiver |
| Previous Message | David Rowley | 2022-10-26 08:25:16 | Re: Use LIMIT instead of Unique for DISTINCT when all distinct pathkeys are redundant |