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.VIRTUAL
type of generated columns in PostgreSQL.proctime()
function, for example: