Re: Second RewriteQuery complains about first RewriteQuery in edge case

2025-11-26 Thread Dean Rasheed
On Wed, 26 Nov 2025 at 12:13, Kirill Reshke wrote: > > On Wed, 26 Nov 2025 at 13:34, Bernice Southey > wrote: > > > I get an odd error if a CTE inserts a GENERATED ALWAYS AS IDENTITY > > column, and then tries to modify an automatically updatable view. > > > > create table t(i int generated alwa

Re: Second RewriteQuery complains about first RewriteQuery in edge case

2025-11-26 Thread Kirill Reshke
On Wed, 26 Nov 2025 at 13:34, Bernice Southey wrote: > > Hi, Hi! > I get an odd error if a CTE inserts a GENERATED ALWAYS AS IDENTITY > column, and then tries to modify an automatically updatable view. > > create table t(i int generated always as identity); > create table base(j int); > create v