View Revisions: Issue #1261

Summary 0001261: reload-table doesn't work with tables that have collate latin1_bin
Revision 2014-02-12 20:03 by elong
Steps To Reproduce CREATE TABLE number_of_columns_bug (
test varchar(255) character set latin1 collate latin1_bin NOT NULL DEFAULT '',
textfield text NOT NULL,
PRIMARY KEY (test)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;

insert into number_of_columns_bug values('testField1','SometextField');

../bin/symadmin reload-table number_of_columns_bug

You must have entry in triggers and trigger_router for 'number_of_columns_bug'
Revision 2013-06-07 14:29 by seroteev
Steps To Reproduce
CREATE TABLE number_of_columns_bug (
test varchar(255) character set latin1 collate latin1_bin NOT NULL DEFAULT '',
textfield text NOT NULL,
PRIMARY KEY (test)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;

insert into number_of_columns_bug values('testField1','SometextField');

../bin/symadmin reload-table number_of_columns_bug

You must have entry in triggers and trigger_router for 'number_of_columns_bug'