Re: support virtual generated column not null constraint - Mailing list pgsql-hackers

From Xuneng Zhou
Subject Re: support virtual generated column not null constraint
Date
Msg-id CABPTF7U+_vtYNye6Dm9onh3B=Uzpn6AmEeeUbV_WpXLTbmyK4Q@mail.gmail.com
Whole thread Raw
In response to Re: support virtual generated column not null constraint  (jian he <jian.universality@gmail.com>)
List pgsql-hackers
Hi,

response from ChatGPT, seems correct:

"Consing up" is an informal term derived from Lisp terminology. In this context, it means dynamically creating (allocating and constructing) a new NullTest node. Instead of reusing an existing node, the code allocates a fresh node—using PostgreSQL’s memory allocation (palloc) functions—and fills in its fields (like the generation expression, null test type, etc.). This new node is then prepared (compiled) for execution with ExecPrepareExpr and used to evaluate whether the generated expression returns a non-NULL value, thus enforcing the NOT NULL constraint on virtual generated columns.


+ * We implement this by consing up a NullTest node for each virtual
trivial question.
 I googled, and still found any explanation of the word "consing up".

pgsql-hackers by date:

Previous
From: Amit Kapila
Date:
Subject: Re: Separate GUC for replication origins
Next
From: Nisha Moond
Date:
Subject: Re: Conflict detection for multiple_unique_conflicts in logical replication