vitess.io/vitess@v0.16.2/go/test/endtoend/vtgate/queries/foundrows/schema.sql (about) 1 create table t2 2 ( 3 id3 bigint, 4 id4 bigint, 5 primary key (id3) 6 ) Engine=InnoDB; 7 8 create table t2_id4_idx 9 ( 10 id bigint not null auto_increment, 11 id4 bigint, 12 id3 bigint, 13 primary key (id), 14 key idx_id4(id4) 15 ) Engine=InnoDB;