Files
dolt/integration-tests/bats/helper/employees-sch.sql
Maximilian Hoffman ac80ba7770 New format blobs (#3588)
* [no-release-notes] New format blob read/write

Use blob chunker to write blobs out of band. Tests for
round tripping and address walking at the tree level.
Run Blob enginetests and extra large file blob tests.

* NodeStore ref refactors

* fix index

* run verify

* fix more bats

* small PR cleanup

* more changes

* last bats errors
2022-06-22 18:02:48 -07:00

10 lines
209 B
SQL

CREATE TABLE employees (
`id` varchar(20) NOT NULL,
`first name` LONGTEXT,
`last name` LONGTEXT,
`title` LONGTEXT,
`start date` LONGTEXT,
`end date` LONGTEXT,
PRIMARY KEY (`id`)
);