Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
MDEV-23466 SIGABRT on SELECT WSREP_LAST_SEEN_GTID
SELECT WSREP_LAST_SEEN_GTID aborts the server if no provider is loaded.
- Loading branch information
Showing
4 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| SELECT WSREP_LAST_SEEN_GTID(); | ||
| WSREP_LAST_SEEN_GTID() | ||
| 00000000-0000-0000-0000-000000000000:-1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| !include ../my.cnf | ||
|
|
||
| [mysqld.1] | ||
| wsrep-on=OFF | ||
| binlog-format=ROW | ||
| wsrep-provider=none | ||
| wsrep-cluster-address='gcomm://' | ||
| innodb_autoinc_lock_mode=2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # | ||
| # MDEV-23466: SIGABRT in wsrep::server_state::provider on | ||
| # SELECT WSREP_LAST_SEEN_GTID() on optimized builds | ||
| # | ||
|
|
||
| --source include/have_innodb.inc | ||
| --source include/have_wsrep.inc | ||
| --source include/have_binlog_format_row.inc | ||
|
|
||
| SELECT WSREP_LAST_SEEN_GTID(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters