Uploaded image for project: 'MariaDB ColumnStore'
  1. MariaDB ColumnStore
  2. MCOL-4601

MOD and DIV operators not behaving as InnoDB

    XMLWordPrintable

Details

    Description

      DROP TABLE IF EXISTS t1;
      CREATE TABLE t1 (a DECIMAL(10,2)) ENGINE=ColumnStore;
      INSERT INTO t1 VALUES (1.21),(12.1);
      SELECT a, a MOD 1.1, a DIV 1.1 FROM t1;
      

      +-------+-----------+
      | a     | a MOD 1.1 |
      +-------+-----------+
      |  1.21 |      0.21 |
      | 12.10 |      0.10 |
      +-------+-----------+
      

      Looks wrong. The expected result is:

      DROP TABLE IF EXISTS t1;
      CREATE TABLE t1 (a DECIMAL(10,2)) ENGINE=InnoDB;
      INSERT INTO t1 VALUES (1.21),(12.1);
      SELECT a, a MOD 1.1, a DIV 1.1 FROM t1;
      

      +-------+-----------+
      | a     | a MOD 1.1 |
      +-------+-----------+
      |  1.21 |      0.11 |
      | 12.10 |      0.00 |
      +-------+-----------+
      

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              bar Alexander Barkov
              Votes:
              0 Vote for this issue
              Watchers:
              1 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.