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

SEC_TO_TIME(wideDecimal) returns 0 in DECIMAL context

    XMLWordPrintable

Details

    Description

      DROP TABLE IF EXISTS t1;
      CREATE TABLE t1 (a DECIMAL(30,1)) ENGINE=ColumnStore;
      INSERT INTO t1 VALUES (1);
      SELECT SEC_TO_TIME(a), SEC_TO_TIME(a)+0.0 FROM t1;
      

      +----------------+--------------------+
      | SEC_TO_TIME(a) | SEC_TO_TIME(a)+0.0 |
      +----------------+--------------------+
      | 00:00:01.0     |                0.0 |
      +----------------+--------------------+
      

      Notice, SEC_TO_TIME(a) per se returned a correct result, but when I further put it into a DECIMAL plus operation, it returned 0.

      The expected result is:

      DROP TABLE IF EXISTS t1;
      CREATE TABLE t1 (a DECIMAL(30,1)) ENGINE=InnoDB;
      INSERT INTO t1 VALUES (1);
      SELECT SEC_TO_TIME(a), SEC_TO_TIME(a)+0.0 FROM t1;
      

      +----------------+--------------------+
      | SEC_TO_TIME(a) | SEC_TO_TIME(a)+0.0 |
      +----------------+--------------------+
      | 00:00:01.0     |                1.0 |
      +----------------+--------------------+
      

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              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.