Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-28067

Multiple conflicting column COLLATE clauses are not rejected

    XMLWordPrintable

Details

    • Bug
    • Status: Closed (View Workflow)
    • Major
    • Resolution: Fixed
    • 10.2, 10.3, 10.4, 10.5, 10.6, 10.7, 10.8, 10.9
    • 10.9.0
    • Character Sets, Data types
    • None

    Description

      If I specify mutiple conflicting COLLATE clauses on the column level, no error is raised:

      CREATE OR REPLACE TABLE t1 (a CHAR(10) COLLATE latin1_swedish_ci NOT NULL COLLATE latin1_bin);
      SHOW CREATE TABLE t1;
      

      +-------+----------------------------------------------------------------------------------------------------------------------------+
      | Table | Create Table                                                                                                               |
      +-------+----------------------------------------------------------------------------------------------------------------------------+
      | t1    | CREATE TABLE `t1` (
        `a` char(10) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL
      ) ENGINE=InnoDB DEFAULT CHARSET=latin1 |
      +-------+----------------------------------------------------------------------------------------------------------------------------+
      

      Notice, the first COLLATE was ignored, the last COLLATE was used.

      The same problem is repeatable on the table level. See MDEV-28117.

      Attachments

        Issue Links

          Activity

            People

              bar Alexander Barkov
              bar Alexander Barkov
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Git Integration

                  Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.