You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default collation in MySQL 5.6 (though this might apply for newer versions as well), is utf8_general_ci which is case-insensitive. This means that the following can happen:
This is probably causing problems with many assumptions that we as developers make throughout the Invenio codebase (especially on tables in e.g. invenio-pidstore).
A more correct collation + charset would come from creating the database with:
CREATEDATABASEinvenio CHARACTER SET utf8 COLLATE utf8_bin;
The text was updated successfully, but these errors were encountered:
The default collation in MySQL 5.6 (though this might apply for newer versions as well), is
utf8_general_ci
which is case-insensitive. This means that the following can happen:This is probably causing problems with many assumptions that we as developers make throughout the Invenio codebase (especially on tables in e.g.
invenio-pidstore
).A more correct collation + charset would come from creating the database with:
The text was updated successfully, but these errors were encountered: