Skip to content

Commit

Permalink
Remove hard-coded engine in MD5/SHA tests
Browse files Browse the repository at this point in the history
  • Loading branch information
datacharmer committed Sep 4, 2020
1 parent 0b66c23 commit f5748c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions test_employees_md5.sql
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,8 @@ CREATE TABLE expected_values (
recs int not null,
crc_sha varchar(100) not null,
crc_md5 varchar(100) not null
) ENGINE=MyISAM;
);

-- In MySQL 5.0, the creation and update time for memory tables is not recorded
/*!50130 ALTER TABLE expected_values engine=memory */;

CREATE TABLE found_values LIKE expected_values;

Expand Down
4 changes: 1 addition & 3 deletions test_employees_sha.sql
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,8 @@ CREATE TABLE expected_values (
recs int not null,
crc_sha varchar(100) not null,
crc_md5 varchar(100) not null
) ENGINE=MyISAM;
);

-- In MySQL 5.0, the creation and update time for memory tables is not recorded
/*!50130 ALTER TABLE expected_values engine=memory */;

CREATE TABLE found_values LIKE expected_values;

Expand Down

0 comments on commit f5748c4

Please sign in to comment.