A generated column is a special column that is always computed from other columns. In RisingWave, you can create a generated column when creating a table or source.
AS <generation_expression>
clause in CREATE TABLE or CREATE SOURCE statements, for example:
STORED
type of generated columns in PostgreSQL. If a table contains a generated column, the table cannot be updated or deleted in RisingWave.VIRTUAL
type of generated columns in PostgreSQL.proctime()
function, for example: