Re: [HACKERS] generated columns
Pavel Stehule <pavel.stehule@gmail.com>
From: Pavel Stehule <pavel.stehule@gmail.com>
To: Peter Eisentraut <peter.eisentraut@2ndquadrant.com>
Cc: Michael Paquier <michael@paquier.xyz>,
pgsql-hackers <pgsql-hackers@postgresql.org>, Sergei Kornilov <sk@zsrv.org>,
Jaime Casanova <jaime.casanova@2ndquadrant.com>
Date: 2019-03-18T14:14:09Z
Lists: pgsql-hackers
Hi po 18. 3. 2019 v 8:35 odesílatel Peter Eisentraut < peter.eisentraut@2ndquadrant.com> napsal: > Here is an updated patch with just the "stored" functionality, as > discussed. > > The actual functionality is much smaller now, contained in the executor. > Everything else is mostly DDL support, trigger handling, and some > frontend stuff. > probably I found a bug create table foo(id int, name text); insert into foo values(1, 'aaa'); alter table foo add column name_upper text generated always as (upper(name)) stored; update foo set name = 'bbb' where id = 1; -- ok alter table foo drop column name_upper; update foo set name = 'bbbx' where id = 1; -- ok alter table foo add column name_upper text generated always as (upper(name)) stored; update foo set name = 'bbbxx' where id = 1; -- error postgres=# update foo set name = 'bbbxx' where id = 1; -- error ERROR: no generation expression found for column number 3 of table "foo" Regards Pavel > -- > Peter Eisentraut http://www.2ndQuadrant.com/ > PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services >
Commits
-
Generated columns
- fc22b6623b6b 12.0 landed
-
Add walreceiver API to get remote server version
- 69039fda837d 12.0 landed
-
Add pg_partition_tree to display information about partitions
- d5eec4eefde7 12.0 cited
-
pg_restore: Augment documentation for -N option
- 2fe42baf7c1a 12.0 cited
-
Change delimiter used for display of NextXID
- 59a884e9854c 9.6.0 cited