Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
use test;
drop table if exists t;
drop table if exists t1;
create table t (a json not null, b json, c varchar(20));
create table t1 (a json, b json not null, c double);
alter table t set tiflash replica 1;
alter table t1 set tiflash replica 1;
set tidb_enforce_mpp=1; set tidb_isolation_read_engines='tiflash';
select count(*) from (select a , b from t union all select a , b from t1) tt;
2. What did you expect to see? (Required)
3. What did you see instead (Required)
ERROR 1105 (HY000): other error for mpp stream: DB::TiFlashException: CastJsonAsJson is not supported.
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
2. What did you expect to see? (Required)
3. What did you see instead (Required)
ERROR 1105 (HY000): other error for mpp stream: DB::TiFlashException: CastJsonAsJson is not supported.
4. What is your TiFlash version? (Required)
master