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

SET double_col=decimal_col returns an error

    XMLWordPrintable

Details

    • Bug
    • Status: Open (View Workflow)
    • Major
    • Resolution: Unresolved
    • 5.6.1, 6.1.1
    • Icebox
    • PrimProc
    • None

    Description

      DROP TABLE IF EXISTS t1;
      CREATE TABLE t1 (i INT, d DOUBLE) ENGINE=ColumnStore;
      INSERT INTO t1 VALUES (0, 1.5);
      UPDATE t1 SET i=d;
      

      ERROR 1264 (22003): CAL0002: IDB-2025: Data truncated for column 'i'
      

      Looks wrong. It should round double to int without errors, like InnoDB does:

      DROP TABLE IF EXISTS t1;
      CREATE TABLE t1 (i INT, d DOUBLE) ENGINE=InnoDB;
      INSERT INTO t1 VALUES (0, 1.5);
      UPDATE t1 SET i=d;
      SELECT * FROM t1;
      

      +------+------+
      | i    | d    |
      +------+------+
      |    2 |  1.5 |
      +------+------+
      

      Note, the same problem is also repeatable for the FLOAT data type.

      Attachments

        Activity

          People

            drrtuy Roman
            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.