Database test contains a table named city that has the InnoDB storage engine CREATE TABLE ‘city' ( 'ID' int NOT NULL AUTO_ INCREMENT ,
‘Name’ char(35) NOT NULL DEFAULT '',
‘Countrycodechar’(3) NOT NULI DEFAULT '',
‘District' char (20) NOT NULI DEFAULT ' ',
‘Population' int NOT NULI DEFAULT '0',
PRIMARY KEY('ID') ,
KEY 'CountryCode' ( ' Countrycode’ )
) ENGINE= InnoDB
TABLESPACE=innodb_ file_ per_ table;
What is the content of the test folder in the data directory?