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

SELECT from table with vcol index reports warning

Details

    Description

      With the following patch applied,

      diff --git a/sql/sql_insert.cc b/sql/sql_insert.cc
      --- a/sql/sql_insert.cc
      +++ b/sql/sql_insert.cc
      @@ -1132,6 +1132,8 @@
             error= write_record(thd, table, &info, result);
             if (unlikely(error))
               break;
      +
      +      DEBUG_SYNC(thd, "after_write_record");
             info.accepted_rows++;
           }
           its.rewind();
      

      the following test outputs warning in SELECT:

      # Run with --innodb-page-size=4K
       
      --source include/have_debug_sync.inc
      --source include/have_innodb.inc
      --source include/have_sequence.inc
      --connect (con2, localhost, root,,)
      --connection default
      set default_storage_engine= innodb;
       
      CREATE TABLE t1(fld1 INT NOT NULL PRIMARY KEY);
      CREATE TABLE t2(fld1 INT NOT NULL,
                      fld2 INT AS (100/fld1) VIRTUAL,
                      KEY(fld2),
                      FOREIGN KEY(fld1) REFERENCES t1(fld1)
                        ON UPDATE CASCADE);
      INSERT INTO t1 SELECT * from seq_1_to_1025; # Fill enough to make a new block
      INSERT INTO t2 VALUES(1, DEFAULT), (2, default);
      --connection con2
      set debug_sync = "after_write_record signal go wait_for finish";
      send INSERT INTO t1 VALUES(10000);
      --connection default
      #--error ER_DIVISION_BY_ZERO
      set debug_sync = "now wait_for go";
      UPDATE IGNORE t1 SET fld1= 0 WHERE fld1= 2;
      SELECT fld2 FROM t2;
       
      set debug_sync = "now signal finish";
      DROP TABLE t2, t1;
       
      set debug_sync= reset;
      --connection default
      

      This affects gcol.innodb_virtual_fk making it nondeterministically output ER_DIVISION_BY_ZERO warning

      Attachments

        Issue Links

          Activity

            nikitamalyavin, the commit message is giving an incomplete description of multi-versioning in secondary indexes:

            When the page is fetched, its max_trx_id is compared to m_up_limit_id. If the value is lower, then this page is just safe to read as is.

            This is missing an important part and the secondary index record is not delete-marked.

            marko Marko Mäkelä added a comment - nikitamalyavin , the commit message is giving an incomplete description of multi-versioning in secondary indexes: When the page is fetched, its max_trx_id is compared to m_up_limit_id. If the value is lower, then this page is just safe to read as is. This is missing an important part and the secondary index record is not delete-marked .

            marko please review commit b9fa4149 [github].

            As it turned out in MDEV-29753, suppressing the warnings for SELECTs only is not enough.
            So adding a parameter to innobase_get_computed_value is reasonable.

            I also couldn't avoid modfying {{sql_class.cc }}, because THD contents are not directly accessible from innodb, so serg's review will also be required.

            You can also review MDEV-29753 solution (b212f4021, github) in one scope, since they are co-related

            nikitamalyavin Nikita Malyavin added a comment - marko please review commit b9fa4149 [ github ]. As it turned out in MDEV-29753 , suppressing the warnings for SELECTs only is not enough. So adding a parameter to innobase_get_computed_value is reasonable. I also couldn't avoid modfying {{sql_class.cc }}, because THD contents are not directly accessible from innodb, so serg 's review will also be required. You can also review MDEV-29753 solution ( b212f4021 , github ) in one scope, since they are co-related

            Thank you, nikitamalyavin, both changes look correct to me. I posted some style suggestions that I hope you will address.

            marko Marko Mäkelä added a comment - Thank you, nikitamalyavin , both changes look correct to me. I posted some style suggestions that I hope you will address.

            I have updated the patches with accordance to marko's notes, and also have changed the base to 10.3

            serg please now review commits 857d85 and MDEV-29753 patch e978c2

            nikitamalyavin Nikita Malyavin added a comment - I have updated the patches with accordance to marko 's notes, and also have changed the base to 10.3 serg please now review commits 857d85 and MDEV-29753 patch e978c2

            ok to push, but squash 857d85 and e978c2 and "fix mrn" into one commit.

            serg Sergei Golubchik added a comment - ok to push, but squash 857d85 and e978c2 and "fix mrn" into one commit.

            People

              nikitamalyavin Nikita Malyavin
              nikitamalyavin Nikita Malyavin
              Votes:
              0 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.