From: | jian he <jian(dot)universality(at)gmail(dot)com> |
---|---|
To: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
Cc: | Álvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>, Xuneng Zhou <xunengzhou(at)gmail(dot)com>, Navneet Kumar <thanit3111(at)gmail(dot)com>, pgsql-hackers(at)lists(dot)postgresql(dot)org |
Subject: | Re: support virtual generated column not null constraint |
Date: | 2025-03-31 07:26:10 |
Message-ID: | CACJufxGwVqkPfyMfF08QTZuQLT+nWh8q8kcE57xrrzgixxRTEA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Fri, Mar 28, 2025 at 10:06 PM Peter Eisentraut <peter(at)eisentraut(dot)org> wrote:
>
> On 24.03.25 04:26, jian he wrote:
> > rebase, and some minor code comments change.
>
> I have committed this.
>
In an earlier thread, I also posted a patch for supporting virtual
generated columns over domain type.
The code is somehow similar,
so I post the remaining patch to this thread.
v7-0001
we need to compute the generation expression for the domain with constraints,
thus rename ExecComputeStoredGenerated to ExecComputeGenerated.
v7-0002
soft error variant of ExecPrepareExpr, ExecInitExpr.
for soft error processing of CoerceToDomain.
we don't want error messages like
"value for domain d2 violates check constraint "d2_check""
while validating existing domain data,
we want something like:
+ERROR: column "b" of table "gtest24" contains values that violate
the new constraint
v7-0003
supports virtual generation columns over domain type.
If the domain has constraints then we need to compute the virtual
generation expression,
that happens mainly within ExecComputeGenerated.
if a virtual generation column type is domain_with_constraint, then
ALTER DOMAIN ADD CONSTRAINTS need to revalidate these virtual
generation expressions again.
so in validateDomainCheckConstraint, validateDomainNotNullConstraint
We need to fetch the generation expression (build_generation_expression),
compile the generation expression (ExecPrepareExprSafe),
and evaluate it (ExecEvalExprSwitchContext).
I also posted patch summary earlier at [1]
[1] https://postgr.es/m/CACJufxHT4R1oABzeQuvjb6DHrig7k-QSr6LEe53Q_nLi9pfanA@mail.gmail.com
Attachment | Content-Type | Size |
---|---|---|
v7-0003-domain-over-virtual-generated-column.patch | text/x-patch | 32.8 KB |
v7-0002-soft-error-variant-of-ExecPrepareExpr-ExecInitExp.patch | text/x-patch | 3.9 KB |
v7-0001-rename-ExecComputeStoredGenerated-to-ExecComputeG.patch | text/x-patch | 5.2 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Bertrand Drouvot | 2025-03-31 07:42:19 | Re: per backend WAL statistics |
Previous Message | Andrei Lepikhov | 2025-03-31 07:01:28 | Re: Prune partitions by ScalarArrayOpExpr with an array parameter (partkey = ANY($1)) |