mariadb
I have two mysql server. MariaDB 10.2 and Mysql 5.5.23
When i make structure comparation i have such differences with default null fields:
In MariaDB 10.2:
guiname VARCHAR(200) DEFAULT 'NULL',
description VARCHAR(2000) DEFAULT 'NULL',
In Mysql:
guiname VARCHAR(200) DEFAULT NULL,
description VARCHAR(2000) DEFAULT NULL,
And after sync these differences are remained
7
votes
Andrew
shared this idea
-
João Sousa commented
I have the same problem when use Maria DB and Using Devart Entity Model.
Exemple:
one field TESTE CHAR(1) in model is represent string TESTE = @"NULL"; and not TESTE = null;