github.com/pingcap/br@v5.3.0-alpha.0.20220125034240-ec59c7b6ce30+incompatible/tests/lightning_duplicate_detection/data/dup_detect.td-schema.sql (about)

     1  create table td (
     2      id  int not null primary key clustered,
     3      name varchar(20) not null,
     4      size bigint not null,
     5      unique key uni_name(name)
     6  );