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

Use of uninitialized value in fil_crypt_rotate_page

Details

    Description

      When running mtr --valgrind on all tests I got the following error.
      Unfortunately I can't repeat it by just running the one test case

      encryption.create_or_replace 'cbc,innodb' w6 [ fail ] Found warnings/errors in
      server log file!

      ==10859== Thread 25:
      ==10859== Conditional jump or move depends on uninitialised value(s)
      ==10859== at 0x1542C31: fil_crypt_rotate_page(key_state_t const*, rotate_thread_t*) (fil0crypt.cc:1831)
      ==10859== by 0x1543193: fil_crypt_rotate_pages(key_state_t const*, rotate_thread_t*) (fil0crypt.cc:1949)
      ==10859== by 0x1543A1A: fil_crypt_thread (fil0crypt.cc:2143)
      ==10859== by 0x4E434F8: start_thread (pthread_create.c:465)
      ==10859== by 0x6F26FBE: clone (clone.S:95)
      ==10859== Conditional jump or move depends on uninitialised value(s)
      ==10859== at 0x1542C41: fil_crypt_rotate_page(key_state_t const*, rotate_thread_t*) (fil0crypt.cc:1831)
      ==10859== by 0x1543193: fil_crypt_rotate_pages(key_state_t const*, rotate_thread_t*) (fil0crypt.cc:1949)
      ==10859== by 0x1543A1A: fil_crypt_thread (fil0crypt.cc:2143)
      ==10859== by 0x4E434F8: start_thread (pthread_create.c:465)
      ==10859== by 0x6F26FBE: clone (clone.S:95)
      ==10859== Conditional jump or move depends on uninitialised value(s)
      ==10859== at 0x1542DA6: fil_crypt_rotate_page(key_state_t const*, rotate_thread_t*) (fil0crypt.cc:1892)
      ==10859== by 0x1543193: fil_crypt_rotate_pages(key_state_t const*, rotate_thread_t*) (fil0crypt.cc:1949)
      ==10859== by 0x1543A1A: fil_crypt_thread (fil0crypt.cc:2143)
      ==10859== by 0x4E434F8: start_thread (pthread_create.c:465)
      ==10859== by 0x6F26FBE: clone (clone.S:95)

      Attachments

        Issue Links

          Activity

            Can you give more details? I just tried this with GCC 10.2.0 and Valgrind 3.16.1:

            mkdir /dev/shm/10.5v
            cd /dev/shm/10.5v
            cmake -DCMAKE_C{,XX}_FLAGS='-Og -march=native -mtune=native' -DWITH_DBUG_TRACE=OFF -DCONC_WITH_{UNITTEST,SSL}=OFF -DWITH_EMBEDDED_SERVER=OFF -DWITH_UNIT_TESTS=OFF -DCMAKE_BUILD_TYPE=Debug -DPLUGIN_{ARCHIVE,TOKUDB,MROONGA,OQGRAPH,ROCKSDB,CONNECT,SPIDER}=NO -DWITH_SAFEMALLOC=OFF -DWITH_{SSL,ZLIB}=system /mariadb/10.5
            nice ninja
            cd mysql-test
            nice ./mtr --valgrind --parallel=auto --big-test --suite=encryption --force --max-test-fail=0
            

            and did not see any such failure. The test seems to be the last one to finish:

            10.5 5ff7e68c7eaf2a2daacb0c1ea07b21c8a7bd2639

            encryption.create_or_replace 'cbc,innodb' w31 [ pass ]  639026
            encryption.innodb-page_encryption 'cbc,innodb' w44 [ pass ]  690348
            encryption.create_or_replace 'ctr,innodb' w11 [ pass ]  581033
            encryption.create_or_replace 'ctr,innodb' w11 [ pass ]  581033
            encryption.innodb-page_encryption 'ctr,innodb' w7 [ pass ]  500929
            valgrind_report                          w0 [ pass ]       
            --------------------------------------------------------------------------
            The servers were restarted 94 times
            Spent 17249.980 of 873 seconds executing testcases
             
            Completed: Failed 1/144 tests, 99.31% were successful.
             
            Failing test(s): encryption.innochecksum
            

            The only failure that I got is a known one:

            encryption.innochecksum '4k,ctr,full_crc32,innodb' w27 [ fail ]  Found warnings/errors in server log file!
                    Test ended at 2020-09-04 19:12:41
            line
            2020-09-04 19:12:34 3 [Warning] InnoDB: Trying to delete tablespace 'test/t6' but there are 1 pending operations on it.
            ^ Found warnings in /dev/shm/10.5v/mysql-test/var/27/log/mysqld.1.err
            ok
            

            Because this was WITH_SSL=system, I think that a relevant piece of knowledge is that my libssl-dev and libssl1.1 version number is 1.1.1g-1.

            I just ran the full WITH_MSAN --big-test suite on 10.5 earlier today, got less than 30 failures (all probably due to MDEV-22083), and no failures due to uninitialized memory in any InnoDB tests.

            marko Marko Mäkelä added a comment - Can you give more details? I just tried this with GCC 10.2.0 and Valgrind 3.16.1: mkdir /dev/shm/10.5v cd /dev/shm/10.5v cmake -DCMAKE_C{,XX}_FLAGS='-Og -march=native -mtune=native' -DWITH_DBUG_TRACE=OFF -DCONC_WITH_{UNITTEST,SSL}=OFF -DWITH_EMBEDDED_SERVER=OFF -DWITH_UNIT_TESTS=OFF -DCMAKE_BUILD_TYPE=Debug -DPLUGIN_{ARCHIVE,TOKUDB,MROONGA,OQGRAPH,ROCKSDB,CONNECT,SPIDER}=NO -DWITH_SAFEMALLOC=OFF -DWITH_{SSL,ZLIB}=system /mariadb/10.5 nice ninja cd mysql-test nice ./mtr --valgrind --parallel=auto --big-test --suite=encryption --force --max-test-fail=0 and did not see any such failure. The test seems to be the last one to finish: 10.5 5ff7e68c7eaf2a2daacb0c1ea07b21c8a7bd2639 encryption.create_or_replace 'cbc,innodb' w31 [ pass ] 639026 encryption.innodb-page_encryption 'cbc,innodb' w44 [ pass ] 690348 encryption.create_or_replace 'ctr,innodb' w11 [ pass ] 581033 encryption.create_or_replace 'ctr,innodb' w11 [ pass ] 581033 encryption.innodb-page_encryption 'ctr,innodb' w7 [ pass ] 500929 valgrind_report w0 [ pass ] -------------------------------------------------------------------------- The servers were restarted 94 times Spent 17249.980 of 873 seconds executing testcases   Completed: Failed 1/144 tests, 99.31% were successful.   Failing test(s): encryption.innochecksum The only failure that I got is a known one: encryption.innochecksum '4k,ctr,full_crc32,innodb' w27 [ fail ] Found warnings/errors in server log file! Test ended at 2020-09-04 19:12:41 line 2020-09-04 19:12:34 3 [Warning] InnoDB: Trying to delete tablespace 'test/t6' but there are 1 pending operations on it. ^ Found warnings in /dev/shm/10.5v/mysql-test/var/27/log/mysqld.1.err ok Because this was WITH_SSL=system , I think that a relevant piece of knowledge is that my libssl-dev and libssl1.1 version number is 1.1.1g-1 . I just ran the full WITH_MSAN --big-test suite on 10.5 earlier today, got less than 30 failures (all probably due to MDEV-22083 ), and no failures due to uninitialized memory in any InnoDB tests.

            Correction: My build also included -DWITH_VALGRIND=ON, but I forgot to mention it in the compilation steps in my previous comment.

            marko Marko Mäkelä added a comment - Correction: My build also included -DWITH_VALGRIND=ON , but I forgot to mention it in the compilation steps in my previous comment.

            I repeated the exercise with -DWITH_VALGRIND=ON -DWITH_SSL=bundled. The only failure was due to a timeout:

            10.5 5ff7e68c7eaf2a2daacb0c1ea07b21c8a7bd2639

            CURRENT_TEST: encryption.innodb_encryption-page-compression
            mysqltest: At line 138: query 'drop table innodb_page_compressed9' failed: 2013: Lost connection to MySQL server during query
            2020-09-07  8:08:03 3 [Note] InnoDB: Deleting the meta-data file './test/innodb_page_compressed9.cfg'
            2020-09-07  8:08:03 3 [Note] InnoDB: Resuming purge
            2020-09-07  8:08:05 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:08:15 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:08:25 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:08:35 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:08:45 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:08:55 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:09:05 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:09:16 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:09:26 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:09:36 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:09:46 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:09:56 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:10:06 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:10:16 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:10:26 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:10:36 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:10:46 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:10:56 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:11:06 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:11:17 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:11:27 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:11:37 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:11:47 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:11:57 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:12:07 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:12:17 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:12:27 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:12:37 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:12:47 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:12:57 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:13:08 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:13:18 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:13:28 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:13:38 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:13:48 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:13:58 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:14:08 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:14:18 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:14:28 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:14:38 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:14:48 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:14:59 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:15:09 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:15:19 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:15:29 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:15:39 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:15:49 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:15:59 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:16:09 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:16:19 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:16:29 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:16:40 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:16:50 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:17:00 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:17:10 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:17:20 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:17:30 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:17:40 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:17:50 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:18:00 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:18:10 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:18:21 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:18:31 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:18:41 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:18:51 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:19:01 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:19:11 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:19:21 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:19:31 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:19:41 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:19:51 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:20:02 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:20:12 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:20:22 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:20:32 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:20:42 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:20:52 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:21:02 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:21:12 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:21:22 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:21:32 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:21:43 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:21:53 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:22:03 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:22:13 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:22:23 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:22:33 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:22:43 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:22:53 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:23:03 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:23:13 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:23:23 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:23:34 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:23:44 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:23:54 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:24:04 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:24:14 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:24:24 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:24:34 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:24:44 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:24:54 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:25:04 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:25:15 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:25:25 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:25:35 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:25:45 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:25:55 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:26:05 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:26:15 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:26:25 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:26:35 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:26:45 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:26:56 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:27:06 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:27:16 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:27:26 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:27:36 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:27:46 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:27:56 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:28:06 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:28:16 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:28:26 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:28:37 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:28:47 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:28:57 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:29:07 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:29:17 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:29:27 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:29:37 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:29:47 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:29:57 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:30:07 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:30:18 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:30:28 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:30:38 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:30:48 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:30:58 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:31:08 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:31:18 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:31:28 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:31:38 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:31:48 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:31:59 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:32:09 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:32:19 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:32:29 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:32:39 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:32:49 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:32:59 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:33:09 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:33:19 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:33:29 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:33:39 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:33:50 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:34:00 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:34:10 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:34:20 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:34:30 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:34:40 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:34:50 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:35:00 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:35:10 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:35:20 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:35:31 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:35:41 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:35:51 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:36:01 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:36:11 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:36:21 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:36:31 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:36:41 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:36:51 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:37:01 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:37:12 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:37:22 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:37:32 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:37:42 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:37:52 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:38:02 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:38:12 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:38:22 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:38:32 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:38:42 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:38:53 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:39:03 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:39:13 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:39:23 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:39:33 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:39:43 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:39:53 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:40:03 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:40:13 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:40:23 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:40:34 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:40:44 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:40:54 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:41:04 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:41:14 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:41:24 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:41:34 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:41:44 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:41:54 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:42:04 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:42:14 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:42:25 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:42:35 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:42:45 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:42:55 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:43:05 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:43:15 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:43:25 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:43:35 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:43:45 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:43:55 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:44:06 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:44:16 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:44:26 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:44:36 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:44:46 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:44:56 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:45:06 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:45:16 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:45:26 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:45:36 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:45:47 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:45:57 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:46:07 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:46:17 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:46:27 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:46:37 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:46:47 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:46:57 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:47:07 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:47:17 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:47:27 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:47:38 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:47:48 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:47:58 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it.
            2020-09-07  8:48:05 0 [Warning] InnoDB: A long semaphore wait:
            --Thread 302503680 has waited at dict0dict.cc line 943 for 2401.00 seconds the semaphore:
            Mutex at 0x1de45c0, Mutex DICT_SYS created /mariadb/10.5m/storage/innobase/dict/dict0dict.cc:1032, lock var 2
            Last time reserved in file /mariadb/10.5m/storage/innobase/row/row0mysql.cc line 3315
            2020-09-07  8:48:05 0 [Note] InnoDB: A semaphore wait:
            --Thread 239560448 has waited at srv0srv.cc line 1646 for 2400.00 seconds the semaphore:
            X-lock on RW-latch at 0x1de4658 created in file dict0dict.cc line 1041
            a writer (thread id 209012480) has reserved it in mode  exclusive
            number of readers 0, waiters flag 1, lock_word: 0
            Last time write locked in file row0mysql.cc line 3315
            2020-09-07  8:48:05 0 [Note] InnoDB: A semaphore wait:
            --Thread 302503680 has waited at dict0dict.cc line 943 for 2401.00 seconds the semaphore:
            Mutex at 0x1de45c0, Mutex DICT_SYS created /mariadb/10.5m/storage/innobase/dict/dict0dict.cc:1032, lock var 2
            Last time reserved in file /mariadb/10.5m/storage/innobase/row/row0mysql.cc line 3315
            InnoDB: ###### Starts InnoDB Monitor for 30 secs to print diagnostic info:
            InnoDB: Pending reads 0, writes 0
            InnoDB: ###### Diagnostic info printed to the standard error stream
            2020-09-07  8:48:06 0 [Warning] InnoDB: A long semaphore wait:
            --Thread 239560448 has waited at srv0srv.cc line 1646 for 2401.00 seconds the semaphore:
            X-lock on RW-latch at 0x1de4658 created in file dict0dict.cc line 1041
            a writer (thread id 209012480) has reserved it in mode  exclusive
            number of readers 0, waiters flag 1, lock_word: 0
            Last time write locked in file row0mysql.cc line 3315
            2020-09-07  8:48:06 0 [Warning] InnoDB: A long semaphore wait:
            --Thread 302503680 has waited at dict0dict.cc line 943 for 2402.00 seconds the semaphore:
            Mutex at 0x1de45c0, Mutex DICT_SYS created /mariadb/10.5m/storage/innobase/dict/dict0dict.cc:1032, lock var 2
            Last time reserved in file /mariadb/10.5m/storage/innobase/row/row0mysql.cc line 3315
            2020-09-07  9:48:15 0 [ERROR] [FATAL] InnoDB: Semaphore wait has lasted > 600 seconds. We intentionally crash the server because it appears to be hung.
            

            This was expectedly followed by a large number of memory leaks reported by Valgrind.

            marko Marko Mäkelä added a comment - I repeated the exercise with -DWITH_VALGRIND=ON -DWITH_SSL=bundled . The only failure was due to a timeout: 10.5 5ff7e68c7eaf2a2daacb0c1ea07b21c8a7bd2639 CURRENT_TEST: encryption.innodb_encryption-page-compression mysqltest: At line 138: query 'drop table innodb_page_compressed9' failed: 2013: Lost connection to MySQL server during query … 2020-09-07 8:08:03 3 [Note] InnoDB: Deleting the meta-data file './test/innodb_page_compressed9.cfg' 2020-09-07 8:08:03 3 [Note] InnoDB: Resuming purge 2020-09-07 8:08:05 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:08:15 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:08:25 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:08:35 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:08:45 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:08:55 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:09:05 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:09:16 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:09:26 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:09:36 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:09:46 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:09:56 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:10:06 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:10:16 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:10:26 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:10:36 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:10:46 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:10:56 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:11:06 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:11:17 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:11:27 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:11:37 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:11:47 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:11:57 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:12:07 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:12:17 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:12:27 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:12:37 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:12:47 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:12:57 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:13:08 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:13:18 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:13:28 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:13:38 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:13:48 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:13:58 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:14:08 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:14:18 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:14:28 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:14:38 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:14:48 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:14:59 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:15:09 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:15:19 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:15:29 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:15:39 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:15:49 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:15:59 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:16:09 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:16:19 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:16:29 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:16:40 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:16:50 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:17:00 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:17:10 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:17:20 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:17:30 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:17:40 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:17:50 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:18:00 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:18:10 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:18:21 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:18:31 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:18:41 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:18:51 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:19:01 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:19:11 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:19:21 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:19:31 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:19:41 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:19:51 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:20:02 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:20:12 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:20:22 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:20:32 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:20:42 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:20:52 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:21:02 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:21:12 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:21:22 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:21:32 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:21:43 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:21:53 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:22:03 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:22:13 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:22:23 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:22:33 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:22:43 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:22:53 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:23:03 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:23:13 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:23:23 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:23:34 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:23:44 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:23:54 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:24:04 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:24:14 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:24:24 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:24:34 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:24:44 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:24:54 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:25:04 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:25:15 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:25:25 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:25:35 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:25:45 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:25:55 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:26:05 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:26:15 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:26:25 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:26:35 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:26:45 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:26:56 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:27:06 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:27:16 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:27:26 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:27:36 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:27:46 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:27:56 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:28:06 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:28:16 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:28:26 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:28:37 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:28:47 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:28:57 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:29:07 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:29:17 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:29:27 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:29:37 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:29:47 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:29:57 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:30:07 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:30:18 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:30:28 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:30:38 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:30:48 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:30:58 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:31:08 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:31:18 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:31:28 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:31:38 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:31:48 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:31:59 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:32:09 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:32:19 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:32:29 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:32:39 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:32:49 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:32:59 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:33:09 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:33:19 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:33:29 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:33:39 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:33:50 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:34:00 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:34:10 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:34:20 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:34:30 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:34:40 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:34:50 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:35:00 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:35:10 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:35:20 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:35:31 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:35:41 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:35:51 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:36:01 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:36:11 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:36:21 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:36:31 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:36:41 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:36:51 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:37:01 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:37:12 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:37:22 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:37:32 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:37:42 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:37:52 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:38:02 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:38:12 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:38:22 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:38:32 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:38:42 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:38:53 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:39:03 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:39:13 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:39:23 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:39:33 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:39:43 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:39:53 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:40:03 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:40:13 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:40:23 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:40:34 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:40:44 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:40:54 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:41:04 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:41:14 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:41:24 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:41:34 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:41:44 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:41:54 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:42:04 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:42:14 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:42:25 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:42:35 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:42:45 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:42:55 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:43:05 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:43:15 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:43:25 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:43:35 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:43:45 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:43:55 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:44:06 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:44:16 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:44:26 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:44:36 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:44:46 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:44:56 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:45:06 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:45:16 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:45:26 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:45:36 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:45:47 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:45:57 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:46:07 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:46:17 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:46:27 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:46:37 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:46:47 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:46:57 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:47:07 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:47:17 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:47:27 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:47:38 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:47:48 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:47:58 3 [Warning] InnoDB: Trying to delete tablespace 'test/innodb_page_compressed9' but there are 1 pending operations on it. 2020-09-07 8:48:05 0 [Warning] InnoDB: A long semaphore wait: --Thread 302503680 has waited at dict0dict.cc line 943 for 2401.00 seconds the semaphore: Mutex at 0x1de45c0, Mutex DICT_SYS created /mariadb/10.5m/storage/innobase/dict/dict0dict.cc:1032, lock var 2 Last time reserved in file /mariadb/10.5m/storage/innobase/row/row0mysql.cc line 3315 2020-09-07 8:48:05 0 [Note] InnoDB: A semaphore wait: --Thread 239560448 has waited at srv0srv.cc line 1646 for 2400.00 seconds the semaphore: X-lock on RW-latch at 0x1de4658 created in file dict0dict.cc line 1041 a writer (thread id 209012480) has reserved it in mode exclusive number of readers 0, waiters flag 1, lock_word: 0 Last time write locked in file row0mysql.cc line 3315 2020-09-07 8:48:05 0 [Note] InnoDB: A semaphore wait: --Thread 302503680 has waited at dict0dict.cc line 943 for 2401.00 seconds the semaphore: Mutex at 0x1de45c0, Mutex DICT_SYS created /mariadb/10.5m/storage/innobase/dict/dict0dict.cc:1032, lock var 2 Last time reserved in file /mariadb/10.5m/storage/innobase/row/row0mysql.cc line 3315 InnoDB: ###### Starts InnoDB Monitor for 30 secs to print diagnostic info: InnoDB: Pending reads 0, writes 0 InnoDB: ###### Diagnostic info printed to the standard error stream 2020-09-07 8:48:06 0 [Warning] InnoDB: A long semaphore wait: --Thread 239560448 has waited at srv0srv.cc line 1646 for 2401.00 seconds the semaphore: X-lock on RW-latch at 0x1de4658 created in file dict0dict.cc line 1041 a writer (thread id 209012480) has reserved it in mode exclusive number of readers 0, waiters flag 1, lock_word: 0 Last time write locked in file row0mysql.cc line 3315 2020-09-07 8:48:06 0 [Warning] InnoDB: A long semaphore wait: --Thread 302503680 has waited at dict0dict.cc line 943 for 2402.00 seconds the semaphore: Mutex at 0x1de45c0, Mutex DICT_SYS created /mariadb/10.5m/storage/innobase/dict/dict0dict.cc:1032, lock var 2 Last time reserved in file /mariadb/10.5m/storage/innobase/row/row0mysql.cc line 3315 … 2020-09-07 9:48:15 0 [ERROR] [FATAL] InnoDB: Semaphore wait has lasted > 600 seconds. We intentionally crash the server because it appears to be hung. This was expectedly followed by a large number of memory leaks reported by Valgrind.

            Was not able to repeat with latest 10.5 while trying:
            mtr --valgrind --suite=encryption

            monty Michael Widenius added a comment - Was not able to repeat with latest 10.5 while trying: mtr --valgrind --suite=encryption

            People

              marko Marko Mäkelä
              monty Michael Widenius
              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.