github.com/dolthub/go-mysql-server@v0.18.0/enginetest/scriptgen/setup/scripts/newlinetable (about) 1 exec 2 CREATE TABLE `newlinetable` ( 3 `i` bigint NOT NULL, 4 `s` varchar(32) NOT NULL, 5 PRIMARY KEY (`i`) 6 ) 7 ---- 8 9 exec 10 insert into newlinetable values 11 (1, '\nthere is some text in here'), 12 (2, 'there is some\ntext in here'), 13 (3, 'there is some text\nin here'), 14 (4, 'there is some text in here\n'), 15 (5, 'there is some text in here') 16 ----