vitess.io/vitess@v0.16.2/go/test/endtoend/vtgate/transaction/schema.sql (about) 1 create table twopc_user ( 2 user_id bigint, 3 name varchar(128), 4 primary key (user_id) 5 ) Engine=InnoDB; 6 7 create table twopc_lookup ( 8 name varchar(128), 9 id bigint, 10 primary key (id) 11 ) Engine=InnoDB; 12 13 create table test ( 14 id bigint, 15 msg varchar(25), 16 primary key (id) 17 ) Engine=InnoDB;