Details
-
Bug
-
Status: Closed (View Workflow)
-
Blocker
-
Resolution: Fixed
-
None
-
None
Description
after
commit e9dbbf11204
|
Author: Igor Babaev <igor@mariadb.com>
|
Date: Sat Jun 6 11:38:38 2020 -0700
|
|
MDEV-22748 MariaDB crash on WITH RECURSIVE large query
|
was merged into 10.5, galera.wsrep_strict_ddl started to fail, it times out because the test hangs on the line
CREATE VIEW x1 AS SELECT * FROM before_t1; |
The first server gets stuck in this loop:
bool st_select_lex::cleanup() |
{
|
...
|
for (TABLE_LIST *tbl= get_table_list(); tbl; tbl= tbl->next_local) |
{
|
and tbl == tbl->next_local, so it loops there forever.
Nothing fails in 10.4, so presumably the fix was incorrectly merged into 10.5
Attachments
Issue Links
- relates to
-
MDEV-20051 Add new mode to wsrep_OSU_method in which Galera checks storage engine of the effected table
-
- Closed
-
-
MDEV-22835 galera.wsrep_strict_ddl MTR failed: crashed while running 'analyze-timeout'
-
- Closed
-
Activity
Field | Original Value | New Value |
---|---|---|
Description |
after
{noformat} commit e9dbbf11204 Author: Igor Babaev <igor@mariadb.com> Date: Sat Jun 6 11:38:38 2020 -0700 {noformat} was merged into 10.5, {{galera.wsrep_strict_ddl}} started to fail, it times out because the test hangs on the line {code:sql} CREATE VIEW x1 AS SELECT * FROM before_t1; {code} The first server gets stuck in this loop: {code:cpp} bool st_select_lex::cleanup() { ... for (TABLE_LIST *tbl= get_table_list(); tbl; tbl= tbl->next_local) { {code} and {{tbl == tbl->next_local}}, so it loops there forever. |
after
{noformat} commit e9dbbf11204 Author: Igor Babaev <igor@mariadb.com> Date: Sat Jun 6 11:38:38 2020 -0700 {noformat} was merged into 10.5, {{galera.wsrep_strict_ddl}} started to fail, it times out because the test hangs on the line {code:sql} CREATE VIEW x1 AS SELECT * FROM before_t1; {code} The first server gets stuck in this loop: {code:cpp} bool st_select_lex::cleanup() { ... for (TABLE_LIST *tbl= get_table_list(); tbl; tbl= tbl->next_local) { {code} and {{tbl == tbl->next_local}}, so it loops there forever. Nothing fails in 10.4, so presumably the fix was incorrectly merged into 10.5 |
Assignee | Igor Babaev [ igor ] |
Link |
This issue relates to |
Link |
This issue relates to |
Component/s | Galera [ 10124 ] | |
Component/s | Tests [ 10800 ] |
Link | This issue blocks MDEV-22122 [ MDEV-22122 ] |
Assignee | Igor Babaev [ igor ] | Sergei Golubchik [ serg ] |
Status | Open [ 1 ] | In Progress [ 3 ] |
Status | In Progress [ 3 ] | Stalled [ 10000 ] |
Fix Version/s | 10.5.4 [ 24264 ] | |
Fix Version/s | 10.5 [ 23123 ] | |
Resolution | Fixed [ 1 ] | |
Status | Stalled [ 10000 ] | Closed [ 6 ] |
Link | This issue blocks MDEV-22122 [ MDEV-22122 ] |
Workflow | MariaDB v3 [ 109949 ] | MariaDB v4 [ 157951 ] |
The parameter wsrep_strict_ddl was introduced in
MDEV-20051(10.5.1).