databend
databend copied to clipboard
Feature: add column support stored computed column
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;