vitess.io/vitess@v0.16.2/go/vt/vtexplain/testdata/unsharded-queries.sql (about)

     1  show tables from ks_unsharded;
     2  select * from t1;
     3  insert into t1 (id,intval,floatval) values (1,2,3.14);
     4  update t1 set intval = 10;
     5  update t1 set floatval = 9.99;
     6  delete from t1 where id = 100;
     7  insert into t1 (id,intval,floatval) values (1,2,3.14) on duplicate key update intval=3, floatval=3.14;
     8  select ID from t1;
     9  select t1.id, t2.c2 from t1 join t2 on t1.id = t2.t1_id where t2.c2 in (1);