Skip to content

Commit

Permalink
Remove blackhole engine from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
datacharmer committed Sep 7, 2020
1 parent 00623f3 commit e5f310a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test_employees_md5.sql
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ INSERT INTO `expected_values` VALUES
SELECT table_name, recs AS expected_records, crc_md5 AS expected_crc FROM expected_values;

DROP TABLE IF EXISTS tchecksum;
CREATE TABLE tchecksum (chk char(100)) ENGINE=blackhole;
CREATE TABLE tchecksum (chk char(100));

SET @crc= '';

Expand Down
2 changes: 1 addition & 1 deletion test_employees_sha.sql
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ INSERT INTO `expected_values` VALUES
SELECT table_name, recs AS expected_records, crc_sha AS expected_crc FROM expected_values;

DROP TABLE IF EXISTS tchecksum;
CREATE TABLE tchecksum (chk char(100)) ENGINE=blackhole;
CREATE TABLE tchecksum (chk char(100));

SET @crc= '';

Expand Down

0 comments on commit e5f310a

Please sign in to comment.