Fixes for table-checksum

This commit is contained in:
Carlos Salguero
2017-01-17 10:15:18 -03:00
parent 410e75a623
commit c97d690e9e
7 changed files with 14 additions and 6 deletions

View File

@@ -1,3 +1,11 @@
DROP DATABASE IF EXISTS my_binary_database;
CREATE DATABASE my_binary_database CHARSET=binary;
USE my_binary_database;
CREATE TABLE `sentinel` (
`id` int(11) NOT NULL,
`ping` varchar(64) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO sentinel VALUES(1, '231f9da77ba0bf7e517b790334433cd3');