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

TreeNode::getUintVal() does not round: Implicit DECIMAL->UINT conversion is not like in InnoDB

    XMLWordPrintable

Details

    • Bug
    • Status: Closed (View Workflow)
    • Major
    • Resolution: Fixed
    • 5.6.1, 6.1.1
    • 6.1.1
    • PrimProc
    • None

    Description

      DROP TABLE IF EXISTS t1;
      CREATE TABLE t1 (a VARCHAR(32), d DECIMAL(10,1)) ENGINE=ColumnStore;
      INSERT INTO t1 VALUES ('aaaa', 1.5);
      SELECT LEFT(a, d) FROM t1;
      

      +------------+
      | LEFT(a, d) |
      +------------+
      | a          |
      +------------+
      

      Notice, 1.5 was truncated to 1.

      Looks wrong. The expected result is to round:

      DROP TABLE IF EXISTS t1;
      CREATE TABLE t1 (a VARCHAR(32), d DECIMAL(10,1)) ENGINE=InnoDB;
      INSERT INTO t1 VALUES ('aaaa', 1.5);
      SELECT LEFT(a, d) FROM t1;
      

      +------------+
      | LEFT(a, d) |
      +------------+
      | aa         |
      +------------+
      

      Notice, 1.5 was rounded to 2.

      Attachments

        Issue Links

          Activity

            People

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