github.com/square/finch@v0.0.0-20240412205204-6530c03e2b96/benchmarks/aurora/trx/create-tables.sql (about)

     1  -- copies: $params.tables
     2  CREATE TABLE sbtest/*!copy-number*/ (
     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    KEY `k_1` (`k`)
     9  ) ENGINE=InnoDB;