{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":19816070,"defaultBranch":"main","name":"server","ownerLogin":"MariaDB","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2014-05-15T10:58:50.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/4739304?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1725202072.0","currentOid":""},"activityList":{"items":[{"before":"993431fd90e581d1a5ac1b27d4010a3fbbe65b6b","after":"8e52917c6fc7b93e8047df0ae65f720ad437c2f9","ref":"refs/heads/bb-11.7-MDEV-34740","pushedAt":"2024-09-01T22:35:39.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"vaintroub","name":"Vladislav Vaintroub","path":"/vaintroub","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1708204?s=80&v=4"},"commit":{"message":"MDEV-34740 mariadb-import: create secondary indexes after data load\n\nParse CREATE TABLE statement, to perform data load without\nsecondary indexes. i.e temporarily drop secondary indexes and constraints\nand recreate them after LOAD DATA INFILE.\n\nThis reduces random IO and load time, in many cases.\n\nThe behavior is guarded by the new innodb_optimize_indexes option for mariadb-import(default ON)","shortMessageHtmlLink":"MDEV-34740 mariadb-import: create secondary indexes after data load"}},{"before":"da80a6eda95b17f8d745fa90b547e701d8aff8db","after":"a50a5e0f3b5e93ffa07ea13ef90a3a3356bba5d8","ref":"refs/heads/bb-10.6-MDEV-34647-v2-galera","pushedAt":"2024-09-01T22:16:18.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"MDEV-34647 : 'INSERT...SELECT' on MyISAM table suddenly replicated by Galera\n\nReplication of MyISAM and Aria DML is experimental and best\neffort only. Earlier change make INSERT SELECT on both\nMyISAM and Aria to replicate using TOI and STATEMENT\nreplication. Replication should happen only if user\nhas set needed wsrep_mode setting.\n\nNote: This commit contains additional changes compared\nto those already made for the 10.5 branch.\n\n+ small refactoring after main fix.\n\nSigned-off-by: Julius Goryavsky ","shortMessageHtmlLink":"MDEV-34647 : 'INSERT...SELECT' on MyISAM table suddenly replicated by…"}},{"before":"7e748d075b7dc8aef36b1155cc43253d6a8a8ff2","after":"235f33e3606b79c5e3b75f4cfd1ca6d92320e9a2","ref":"refs/heads/10.5","pushedAt":"2024-09-01T21:27:51.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"MDEV-33133: MDL conflict handling code should skip BF-aborted trxs\n\nIt's possible that MDL conflict handling code is called more\nthan once for a transaction when:\n- it holds more than one conflicting MDL lock\n- reschedule_waiters() is executed,\nwhich results in repeated attempts to BF-abort already aborted\ntransaction.\nIn such situations, it might be that BF-aborting logic sees\na partially rolled back transaction and erroneously decides\non future actions for such a transaction.\n\nThe specific situation tested and fixed is when a SR transaction\napplied in the node gets BF-aborted by a started TOI operation.\nIt's then caught with the server transaction already rolled back,\nbut with no MDL locks yet released. This caused wrong state\ndetection for such a transaction during repeated MDL conflict\nhandling code execution.\n\nSigned-off-by: Julius Goryavsky ","shortMessageHtmlLink":"MDEV-33133: MDL conflict handling code should skip BF-aborted trxs"}},{"before":"88e6a945dcf40ed43ea39207ca9ee9bfcc7c20a9","after":"239f3c93f2c41dd60242ac4d28fac1de9f967b4f","ref":"refs/heads/bb-11.6-MDEV-32887-vector","pushedAt":"2024-09-01T16:59:12.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"vuvova","name":"Sergei Golubchik","path":"/vuvova","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2737648?s=80&v=4"},"commit":{"message":"columnstore compilation fixes for MDEV-34811","shortMessageHtmlLink":"columnstore compilation fixes for MDEV-34811"}},{"before":null,"after":"cb66b9f20960e6b2942b225a0d12a226f9c08562","ref":"refs/heads/bb-10.5-MDEV-27861-v3-galera","pushedAt":"2024-09-01T14:47:52.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"MDEV-27861: Creating partitioned tables should not be allowed with wsrep_osu_method=TOI and wsrep_strict_ddl=ON\n\nProblem was incorrect handling of partitioned tables,\nbecause db_type == DB_TYPE_PARTITION_DB\nwsrep_should_replicate_ddl incorrectly marked\nDDL as not replicatable. However, in partitioned\ntables we should check implementing storage engine\nfrom table->file->partition_ht() if available because\nif partition handler is InnoDB all DDL should be allowed\neven with wsrep_strict_ddl. For other storage engines\nDDL should not be allowed and error should be issued.\n\nThis is 10.5 version of the fix.\n\nSigned-off-by: Julius Goryavsky ","shortMessageHtmlLink":"MDEV-27861: Creating partitioned tables should not be allowed with ws…"}},{"before":null,"after":"da80a6eda95b17f8d745fa90b547e701d8aff8db","ref":"refs/heads/bb-10.6-MDEV-34647-v2-galera","pushedAt":"2024-09-01T14:36:38.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"MDEV-34647 : 'INSERT...SELECT' on MyISAM table suddenly replicated by Galera\n\nReplication of MyISAM and Aria DML is experimental and best\neffort only. Earlier change make INSERT SELECT on both\nMyISAM and Aria to replicate using TOI and STATEMENT\nreplication. Replication should happen only if user\nhas set needed wsrep_mode setting.\n\nNote: This commit contains additional changes compared\nto those already made for the 10.5 branch.\n\n+ small refactoring after main fix.\n\nSigned-off-by: Julius Goryavsky ","shortMessageHtmlLink":"MDEV-34647 : 'INSERT...SELECT' on MyISAM table suddenly replicated by…"}},{"before":null,"after":"e80d29f92d347f383ab16f3c8d8bd59ec0ed9e40","ref":"refs/heads/bb-10.5-MDEV-29775-galera","pushedAt":"2024-09-01T14:27:33.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"MDEV-29775 : Assertion `0' failed in void Protocol::end_statement() when adding data to the MyISAM table after setting wsrep_mode=replicate_myisam\n\nFirstly, variables wsrep_forced_binlog_format, wsrep_replicate_myisam\nshould not be able to set if wsrep_on=OFF.\n\nSecondly, if wsrep_replicate_myisam=ON we allow wsrep_forced_binlog_format\nto be [DEFAULT|ROW].\n\nSigned-off-by: Julius Goryavsky ","shortMessageHtmlLink":"MDEV-29775 : Assertion `0' failed in void Protocol::end_statement() w…"}},{"before":null,"after":"235f33e3606b79c5e3b75f4cfd1ca6d92320e9a2","ref":"refs/heads/bb-10.5-MDEV-33133-galera","pushedAt":"2024-09-01T14:23:33.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"MDEV-33133: MDL conflict handling code should skip BF-aborted trxs\n\nIt's possible that MDL conflict handling code is called more\nthan once for a transaction when:\n- it holds more than one conflicting MDL lock\n- reschedule_waiters() is executed,\nwhich results in repeated attempts to BF-abort already aborted\ntransaction.\nIn such situations, it might be that BF-aborting logic sees\na partially rolled back transaction and erroneously decides\non future actions for such a transaction.\n\nThe specific situation tested and fixed is when a SR transaction\napplied in the node gets BF-aborted by a started TOI operation.\nIt's then caught with the server transaction already rolled back,\nbut with no MDL locks yet released. This caused wrong state\ndetection for such a transaction during repeated MDL conflict\nhandling code execution.\n\nSigned-off-by: Julius Goryavsky ","shortMessageHtmlLink":"MDEV-33133: MDL conflict handling code should skip BF-aborted trxs"}},{"before":"a4654eccebc29a17ba6e1a31f0ec9425f2adef4f","after":"b1f75221701c3ddd5de25ebb2322b3a109ccf20a","ref":"refs/heads/10.6","pushedAt":"2024-09-01T13:38:06.000Z","pushType":"push","commitsCount":15,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"MDEV-34841 : Enable working Galera tests\n\n* Fixes galera.galera_bf_kill_debug test case.\n* Enable galera_ssl_upgrade, galera_ssl_reload, galera_pc_bootstrap\n* Add MDEV to disabled tests that miss it\n\nP.S. This commit contains additional changes compared\nto the similar commit for 10.5 branch.\n\nSigned-off-by: Julius Goryavsky ","shortMessageHtmlLink":"MDEV-34841 : Enable working Galera tests"}},{"before":null,"after":"b1f75221701c3ddd5de25ebb2322b3a109ccf20a","ref":"refs/heads/bb-10.6-MDEV-30536-v2-galera","pushedAt":"2024-09-01T05:03:35.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"MDEV-34841 : Enable working Galera tests\n\n* Fixes galera.galera_bf_kill_debug test case.\n* Enable galera_ssl_upgrade, galera_ssl_reload, galera_pc_bootstrap\n* Add MDEV to disabled tests that miss it\n\nP.S. This commit contains additional changes compared\nto the similar commit for 10.5 branch.\n\nSigned-off-by: Julius Goryavsky ","shortMessageHtmlLink":"MDEV-34841 : Enable working Galera tests"}},{"before":"5d81dcbd95d41f31dde56b2f9abddebb4b9a44a6","after":"bac0804d81964dacf7e90816d08dd28ef82f727d","ref":"refs/heads/st-10.6-julius","pushedAt":"2024-09-01T04:52:25.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"Merge branch '10.5' into '10.6'","shortMessageHtmlLink":"Merge branch '10.5' into '10.6'"}},{"before":"b65bbb2fae419eef54cb79584e618b3ef5409aa2","after":"7e748d075b7dc8aef36b1155cc43253d6a8a8ff2","ref":"refs/heads/10.5","pushedAt":"2024-09-01T04:38:07.000Z","pushType":"push","commitsCount":7,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"MDEV-34841 : Enable working Galera tests\n\n* Fixes galera.galera_bf_kill_debug test case.\n* Enable galera_ssl_upgrade, galera_ssl_reload, galera_pc_bootstrap\n* Add MDEV to disabled tests that miss it\n\nSigned-off-by: Julius Goryavsky ","shortMessageHtmlLink":"MDEV-34841 : Enable working Galera tests"}},{"before":null,"after":"f7b683f520befc1265b6fe8e77286b0ea53e5772","ref":"refs/heads/bb-10.6-MDEV-30536-galera","pushedAt":"2024-09-01T04:35:58.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"MDEV-34841 : Enable working Galera tests\n\n* Fixes galera.galera_bf_kill_debug test case.\n* Enable galera_ssl_upgrade, galera_ssl_reload, galera_pc_bootstrap\n* Add MDEV to disabled tests that miss it\n\nP.S. This commit contains additional changes compared\nto the similar commit for 10.5 branch.\n\nSigned-off-by: Julius Goryavsky ","shortMessageHtmlLink":"MDEV-34841 : Enable working Galera tests"}},{"before":"4cb34e00313a014ad37d84461dbdcd084d30d2c5","after":"f7b683f520befc1265b6fe8e77286b0ea53e5772","ref":"refs/heads/10.6-MDEV-30536-galera","pushedAt":"2024-09-01T01:58:48.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"MDEV-34841 : Enable working Galera tests\n\n* Fixes galera.galera_bf_kill_debug test case.\n* Enable galera_ssl_upgrade, galera_ssl_reload, galera_pc_bootstrap\n* Add MDEV to disabled tests that miss it\n\nP.S. This commit contains additional changes compared\nto the similar commit for 10.5 branch.\n\nSigned-off-by: Julius Goryavsky ","shortMessageHtmlLink":"MDEV-34841 : Enable working Galera tests"}},{"before":"dd64f29d6bea6f36be9634edd5c2d27f2205ca33","after":"7e748d075b7dc8aef36b1155cc43253d6a8a8ff2","ref":"refs/heads/bb-10.5-MDEV-32363-galera","pushedAt":"2024-09-01T01:55:27.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"MDEV-34841 : Enable working Galera tests\n\n* Fixes galera.galera_bf_kill_debug test case.\n* Enable galera_ssl_upgrade, galera_ssl_reload, galera_pc_bootstrap\n* Add MDEV to disabled tests that miss it\n\nSigned-off-by: Julius Goryavsky ","shortMessageHtmlLink":"MDEV-34841 : Enable working Galera tests"}},{"before":null,"after":"4cb34e00313a014ad37d84461dbdcd084d30d2c5","ref":"refs/heads/10.6-MDEV-30536-galera","pushedAt":"2024-09-01T01:42:29.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"MDEV-34841 : Enable working Galera tests\n\n* Fixes galera.galera_bf_kill_debug test case.\n* Enable galera_ssl_upgrade, galera_ssl_reload, galera_pc_bootstrap\n* Add MDEV to disabled tests that miss it\n\nSigned-off-by: Julius Goryavsky ","shortMessageHtmlLink":"MDEV-34841 : Enable working Galera tests"}},{"before":null,"after":"dd64f29d6bea6f36be9634edd5c2d27f2205ca33","ref":"refs/heads/bb-10.5-MDEV-32363-galera","pushedAt":"2024-09-01T01:04:59.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"MDEV-33897 : Galera test failure on galera_3nodes.galera_gtid_consistency\n\nBased on logs SST was started before donor reached\nPrimaty state. Add wait_conditions to make sure that\nnodes reach Primary state before starting next node.\n\nSigned-off-by: Julius Goryavsky ","shortMessageHtmlLink":"MDEV-33897 : Galera test failure on galera_3nodes.galera_gtid_consist…"}},{"before":"36b867ad507a3d3bf5a6ede110d589fcd42951e9","after":"c9e3d8fdbe7c66ab3cb394fec62133e973a31cea","ref":"refs/heads/bb-10.5-serg","pushedAt":"2024-08-31T22:16:04.000Z","pushType":"push","commitsCount":68,"pusher":{"login":"vuvova","name":"Sergei Golubchik","path":"/vuvova","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2737648?s=80&v=4"},"commit":{"message":"MDEV-16699 heap-use-after-free in group_concat with compressed or GIS columns\n\nField_blob::store() has special code for GROUP_CONCAT temporary table\n(to store blob values in Blob_mem_storage - this prevents them\nfrom being freed/overwritten when a next row is read).\n\nField_geom and Field_blob_compressed inherit from Field_blob but they\nhave their own ::store() method without this special Blob_mem_storage\nsupport.\n\nConsidering that non-grouping CONCAT() of such fields converts\nthem to plain BLOB, let's do the same for GROUP_CONCAT. To do it,\nItem_func_group_concat::setup will signal that it's creating\na temporary table for GROUP_CONCAT, and Field_blog::make_new_field()\noverride will create base Field_blob when under group concat.","shortMessageHtmlLink":"MDEV-16699 heap-use-after-free in group_concat with compressed or GIS…"}},{"before":"5f7d19898702cf16fc5d6858f1b45d652a5375b1","after":"993431fd90e581d1a5ac1b27d4010a3fbbe65b6b","ref":"refs/heads/bb-11.7-MDEV-34740","pushedAt":"2024-08-31T22:02:16.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"vaintroub","name":"Vladislav Vaintroub","path":"/vaintroub","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1708204?s=80&v=4"},"commit":{"message":"Debian, eek","shortMessageHtmlLink":"Debian, eek"}},{"before":"12dde0edff8ed061d7198d037e333cbd71da18de","after":"5f7d19898702cf16fc5d6858f1b45d652a5375b1","ref":"refs/heads/bb-11.7-MDEV-34740","pushedAt":"2024-08-31T21:38:24.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"vaintroub","name":"Vladislav Vaintroub","path":"/vaintroub","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1708204?s=80&v=4"},"commit":{"message":"GCC 4.8.3, ewww","shortMessageHtmlLink":"GCC 4.8.3, ewww"}},{"before":"b07c2fcc04f1d37ca32b6123d2a5917997700847","after":"12dde0edff8ed061d7198d037e333cbd71da18de","ref":"refs/heads/bb-11.7-MDEV-34740","pushedAt":"2024-08-31T21:09:42.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"vaintroub","name":"Vladislav Vaintroub","path":"/vaintroub","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1708204?s=80&v=4"},"commit":{"message":"GCC 4.8.3, ewww","shortMessageHtmlLink":"GCC 4.8.3, ewww"}},{"before":null,"after":"0a99d0336916d7f9fb20480078412d50e61c27ce","ref":"refs/heads/bb-11.6-hints-v2-input","pushedAt":"2024-08-31T16:08:38.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"spetrunia","name":"Sergei Petrunia","path":"/spetrunia","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2734550?s=80&v=4"},"commit":{"message":"Input to: MDEV-33281 Implement optimizer hints: Comments and renames","shortMessageHtmlLink":"Input to: MDEV-33281 Implement optimizer hints: Comments and renames"}},{"before":"2e079d1b61306a328e80949145626e4e8296ceee","after":"6edc022527f060e0d785f40adc9d2985458927ef","ref":"refs/heads/bb-11.6-hints-v2","pushedAt":"2024-08-31T15:33:46.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"Olernov","name":"Oleg Smirnov","path":"/Olernov","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/12813122?s=80&v=4"},"commit":{"message":"MDEV-33281 Make BNL() hint work for join_cache_level=0\n\njoin_cache_level=0 disables join cache buffers, but the hint\nBNL() now allows to employ BNL(H) buffers for particular tables\nor query blocks.","shortMessageHtmlLink":"MDEV-33281 Make BNL() hint work for join_cache_level=0"}},{"before":"74d716876537e244ae20a71874c9e670e0cfc930","after":"b65bbb2fae419eef54cb79584e618b3ef5409aa2","ref":"refs/heads/10.5","pushedAt":"2024-08-31T14:02:55.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"MDEV-34647: small refactoring after main fix","shortMessageHtmlLink":"MDEV-34647: small refactoring after main fix"}},{"before":null,"after":"b07c2fcc04f1d37ca32b6123d2a5917997700847","ref":"refs/heads/bb-11.7-MDEV-34740","pushedAt":"2024-08-31T13:35:03.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"vaintroub","name":"Vladislav Vaintroub","path":"/vaintroub","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1708204?s=80&v=4"},"commit":{"message":"Merge branch 'bb-11.6-MDEV-34740'","shortMessageHtmlLink":"Merge branch 'bb-11.6-MDEV-34740'"}},{"before":"3c4b54e5b7e5a72fe049f50c4ef6b620413aadc2","after":"a5d6392e6e88c725f4a37cbb54b5f041b4a39edb","ref":"refs/heads/knielsen_slave_abort_select_timeout","pushedAt":"2024-08-31T09:42:00.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"knielsen","name":"Kristian Nielsen","path":"/knielsen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/79553?s=80&v=4"},"commit":{"message":"Improved patch for --slave-abort-select-timeout\n\nRe-use the existing MDL notify_conflicting_locks() for aborting conflicting\nselects instead of hacking it into can_grant_lock().\n\nSigned-off-by: Kristian Nielsen ","shortMessageHtmlLink":"Improved patch for --slave-abort-select-timeout"}},{"before":null,"after":"3c4b54e5b7e5a72fe049f50c4ef6b620413aadc2","ref":"refs/heads/knielsen_slave_abort_select_timeout","pushedAt":"2024-08-30T23:45:15.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"knielsen","name":"Kristian Nielsen","path":"/knielsen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/79553?s=80&v=4"},"commit":{"message":"Proof-of-concept patch for --slave-abort-select-timeout option\n\nIf a slave DDL needs to wait for more than that many seconds for a user\nSELECT query, any such SELECT is aborted (killed) to allow the slave\nto proceed.\n\nSigned-off-by: Kristian Nielsen ","shortMessageHtmlLink":"Proof-of-concept patch for --slave-abort-select-timeout option"}},{"before":"e2545836a1317e65e417e64dd767cd049c53e6d0","after":"b65bbb2fae419eef54cb79584e618b3ef5409aa2","ref":"refs/heads/bb-10.5-MDEV-34647-v2-galera","pushedAt":"2024-08-30T19:50:56.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"sysprg","name":null,"path":"/sysprg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10448138?s=80&v=4"},"commit":{"message":"MDEV-34647: small refactoring after main fix","shortMessageHtmlLink":"MDEV-34647: small refactoring after main fix"}},{"before":"9091afdc55ab2e6276256da59ce79e318abfb1cf","after":"74d716876537e244ae20a71874c9e670e0cfc930","ref":"refs/heads/10.5","pushedAt":"2024-08-30T18:25:00.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"igorbabaev","name":"Igor Babaev","path":"/igorbabaev","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7783432?s=80&v=4"},"commit":{"message":"MDEV-25084 Assertion failure when moving equality from having to where\n\nThis bug was fixed by the patch for bug MDEV-26402.\nOnly a test case that failed before this patch was applied is added\nin this commit.","shortMessageHtmlLink":"MDEV-25084 Assertion failure when moving equality from having to where"}},{"before":"8778a83eee9472fe15da185a188543595f262cda","after":"74d716876537e244ae20a71874c9e670e0cfc930","ref":"refs/heads/bb-10.5-igor","pushedAt":"2024-08-30T17:31:52.000Z","pushType":"push","commitsCount":521,"pusher":{"login":"igorbabaev","name":"Igor Babaev","path":"/igorbabaev","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/7783432?s=80&v=4"},"commit":{"message":"MDEV-25084 Assertion failure when moving equality from having to where\n\nThis bug was fixed by the patch for bug MDEV-26402.\nOnly a test case that failed before this patch was applied is added\nin this commit.","shortMessageHtmlLink":"MDEV-25084 Assertion failure when moving equality from having to where"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEqgxkQAA","startCursor":null,"endCursor":null}},"title":"Activity · MariaDB/server"}