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

Bogus warning ER_TRUNCATED_WRONG_VALUE with DESC key on partitioned Spider table

    XMLWordPrintable

Details

    Description

      --source include/have_partition.inc
       
      INSTALL SONAME 'ha_spider';
      SET spider_same_server_link= 1;
       
      CREATE TABLE t1 (id INT);
      CREATE TABLE t2 (id INT);
      eval 
      CREATE TABLE t (id INT, PRIMARY KEY (id DESC))
      ENGINE=SPIDER
      COMMENT "host '127.0.0.1', port '$MASTER_MYPORT', user 'root'"
      PARTITION BY RANGE (id)
      (PARTITION p1 VALUES LESS THAN (100) COMMENT "table 't1'",
       PARTITION p2 VALUES LESS THAN (MAXVALUE) COMMENT "table 't2'");
       
      INSERT INTO t (id) VALUES (1),(2);
      SELECT MAX(id) FROM t;
      

      preview-10.8-MDEV-13756-desc-indexes c10e10c6

      SELECT MAX(id) FROM t;
      MAX(id)
      2
      Warnings:
      Warning	1292	Truncated incorrect INTEGER value: ''
      

      Doesn't happen with an ASC key.
      Doesn't happen when the other partition isn't empty.

      Attachments

        Issue Links

          Activity

            People

              serg Sergei Golubchik
              elenst Elena Stepanova
              Votes:
              0 Vote for this issue
              Watchers:
              3 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.