databend icon indicating copy to clipboard operation
databend copied to clipboard

Feature: add column support stored computed column

Open b41sh opened this issue 1 year ago • 0 comments

Summary

add column support stored computed column

mysql> create table t1(
    ->     id int,
    ->     val json
    -> );
Query OK, 0 rows affected (2.10 sec)

mysql> alter table t1 add column source string null as (val['source']::string) stored;

b41sh avatar Jan 22 '24 07:01 b41sh