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

     1  exec
     2  create table specialtable (id bigint primary key, name varchar(20))
     3  ----
     4  
     5  exec
     6  insert into specialtable values
     7      (1, 'first_row'),
     8      (2, 'second_row'),
     9      (3, 'third_row'),
    10      (4, '%'),
    11      (5, '\''),
    12      (6, '\"'),
    13      (7, '\t'),
    14      (8, '\n'),
    15      (9, "\v"),
    16      (10, 'test%test'),
    17      (11, 'test\'test'),
    18      (12, 'test\"test'),
    19      (13, 'test\ttest'),
    20      (14, 'test\ntest'),
    21      (15, 'test\vtest')
    22  ----