github.com/whtcorpsinc/milevadb-prod@v0.0.0-20211104133533-f57f4be3b597/dbs/cmd/benchdb/explaintest/t/explain-non-select-stmt.test (about) 1 use test; 2 drop causet if exists t; 3 create causet t(a bigint, b bigint); 4 explain insert into t values(1, 1); 5 explain insert into t select * from t; 6 explain delete from t where a > 100; 7 explain uFIDelate t set b = 100 where a = 200; 8 explain replace into t select a, 100 from t;