github.com/dolthub/go-mysql-server@v0.18.0/enginetest/scriptgen/setup/scripts/myhistorytable (about)

     1  exec
     2  CREATE TABLE `myhistorytable` (
     3    `i` bigint NOT NULL,
     4    `s` varchar(20) NOT NULL,
     5    `c` varchar(20) NOT NULL,
     6    PRIMARY KEY (`i`)
     7  )
     8  ----
     9  
    10  # TODO add history rows, and version the table
    11  # exec
    12  # insert into myhistorytable values
    13  #----