github.com/square/finch@v0.0.0-20240412205204-6530c03e2b96/benchmarks/intro/schema.sql (about)

     1  CREATE TABLE t1 (
     2    id INT UNSIGNED NOT NULL PRIMARY KEY,
     3    n  INT NOT NULL,
     4    c  VARCHAR(100) NOT NULL,
     5    INDEX (n)
     6  )