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

Rows matched: and Changed: are 0 even if rows changed after update

    XMLWordPrintable

Details

    • Bug
    • Status: Closed (View Workflow)
    • Major
    • Resolution: Fixed
    • 1.2
    • 1.4.3
    • MDB Plugin
    • None

    Description

      To reproduce:

       create table t1 (c1 int) engine=columnstore;
      insert into t1 (c1) values(1);
      insert into t1 (c1) values(2);
      update t1 set c1 = c1 +1;
      

      Rows matched and Changed --> 0

      Query OK, 2 rows affected (0.516 sec)
      Rows matched: 0  Changed: 0  Warnings: 0
      

      The same testcase works with InnoDB

       create table t1inno (c1 int) engine=columnstore;
      insert into t1inno (c1) values(1);
      insert into t1inno (c1) values(2);
      update t1inno set c1 = c1 +1;
      

      Query OK, 2 rows affected (0.056 sec)
      Rows matched: 2  Changed: 2  Warnings: 0
      

      Attachments

        Issue Links

          Activity

            People

              drrtuy Roman
              Richard Richard Stracke
              Votes:
              1 Vote for this issue
              Watchers:
              3 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.