github.com/square/finch@v0.0.0-20240412205204-6530c03e2b96/benchmarks/sysbench/trx/schema.sql (about) 1 2 CREATE TABLE sbtest1 ( 3 id int NOT NULL AUTO_INCREMENT, 4 k int NOT NULL DEFAULT '0', 5 c char(120) NOT NULL DEFAULT '', 6 pad char(60) NOT NULL DEFAULT '', 7 PRIMARY KEY (id) 8 /* Secondary index added after loading rows */ 9 ) ENGINE=InnoDB