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

Tables T1 and t1 do not work well with ENGINE=CSV and lower-case-table-names=0

    XMLWordPrintable

Details

    • Bug
    • Status: Open (View Workflow)
    • Major
    • Resolution: Unresolved
    • 10.4, 11.4
    • 10.4, 11.4
    • Character Sets
    • None

    Description

      CREATE OR REPLACE TABLE t1 (a INT NOT NULL) ENGINE=CSV;
      CREATE OR REPLACE TABLE T1 (a INT NOT NULL) ENGINE=CSV;
      INSERT INTO t1 VALUES (10);
      INSERT INTO T1 VALUES (20);
      SELECT * FROM t1;
      

      +----+
      | a  |
      +----+
      | 10 |
      | 20 |
      +----+
      

      Looks wrong. Expected to get the value 10 only.

      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:

                Git Integration

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