There was an error while loading. Please reload this page.
1 parent b846243 commit f6cfc21Copy full SHA for f6cfc21
1 file changed
localtests/move-tables/generated-columns/create.sql
@@ -2,9 +2,9 @@ drop table if exists gh_ost_test;
2
create table gh_ost_test (
3
id int auto_increment,
4
a int not null,
5
- virtual_sum int as (a + 10) virtual not null,
+ virtual_sum int as (a + 10) virtual,
6
b int not null,
7
- stored_sum int as (a + b) stored not null,
+ stored_sum int as (a + b) stored,
8
json_value json default null,
9
virtual_json_value varchar(16) as (
10
coalesce(json_unquote(json_extract(json_value, '$.value')), 'direct')
0 commit comments