It seems like the INSERT using a SELECT statement is broken in 1.5.12 when the SELECT table contains a STORED column.
CREATE TABLE test1 (id STRING(MAX) NOT NULL) PRIMARY KEY (id);
CREATE TABLE test2 (
id STRING(MAX) NOT NULL,
delete_time TIMESTAMP,
deleted BOOL NOT NULL AS (delete_time IS NOT NULL) STORED,
) PRIMARY KEY (id);
It seems like the INSERT using a SELECT statement is broken in 1.5.12 when the SELECT table contains a STORED column.
Results in the following error:
If you rerun with the following schema it works: