I created a FEDERATED database on a Centos 7 with MariaDB 5.5.44 from a db located on a Centos 6.x with Mysql 5.1.69.
Updating value for a TEXT column from Centos 7 - MariaDb returns no error but does not update column value.
Update works fine with varchar & int.
Does anyone encoutered this issue and have some information about it ?
Thanks Nicolas
(copied from comment and prettyprinted...)
CREATE TABLE IF NOT EXISTS session (
session int(11) NOT NULL,
session_name varchar(32) COLLATE latin1_general_ci DEFAULT NULL,
om_utilisateur int(11) NOT NULL,
clef varchar(100) COLLATE latin1_general_ci NOT NULL,
valeur text COLLATE latin1_general_ci NOT NULL,
crea_modi timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (session),
KEY session_name (session_name)
) ENGINE=FEDERATED DEFAULT CHARSET=latin1 CONNECTION='mysql://USER:PASS@prod/utilisation/news';