Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #1651657, failback from backup for legacy for small BP instance size #1262

Merged
merged 1 commit into from Mar 31, 2017

Conversation

ihanick
Copy link
Contributor

@ihanick ihanick commented Dec 25, 2016

https://bugs.launchpad.net/percona-server/+bug/1651657
http://jenkins.percona.com/job/percona-server-5.6-param/1560/

Small buffer pool instance size and backoff algorithm causing deadlock, failback to legacy algorithm in such cases.

Copy link
Contributor

@laurynas-biveinis laurynas-biveinis left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please also check the Jenkins run for sys_vars.innodb_empty_free_list_algorithm_basic failure

@@ -0,0 +1,11 @@
--source include/have_innodb.inc
--let $assert_text= Small buffer pool instance should use legacy
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s/instance/instances

--source include/assert.inc

call mtr.add_suppression("InnoDB: innodb_empty_free_list_algorithm = 'backoff' requires at least 20MB buffer pool instances.");
--error 1231
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use ER_ mnemonics

@@ -0,0 +1,11 @@
--source include/have_innodb.inc
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please move the testcase to the innodb suite

@@ -3880,7 +3880,8 @@ innobase_init(
if (!innodb_empty_free_list_algorithm_backoff_allowed(
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are some code smells in innodb_empty_free_list_algorithm_backoff_allowed: 1) the name hardcodes that it is "backoff", but the 1st arg passes the actual algorithm to verify; 2) the calculation innobase_buffer_pool_size / srv_page_size / innobase_buffer_pool_instance is the only correct way to pass the 2nd arg.

Thus:

  • Please rename to innodb_empty_free_list_algorithm_allowed
  • Please inline and remove the 2nd arg

@ihanick ihanick force-pushed the 5.6-ps-bug1651657 branch 4 times, most recently from 6c78a4b to d5b7071 Compare December 29, 2016 03:08
@ihanick
Copy link
Contributor Author

ihanick commented Dec 29, 2016

http://jenkins.percona.com/job/percona-server-5.6-param/1567/

  • renamed to innodb_empty_free_list_algorithm_allowed
  • moved number of pages in buffer pool calculation to this function
  • using new InnoDB header comment style
  • moved function declaration slightly above to avoid merge conflict
  • using --error ER_WRONG_VALUE_FOR_VAR in test
  • test now inside innodb suite
  • there is no limitation for minimal buffer pool size to have several instances (looks like a bug, because instance could be smaller than minimum single buffer pool size), forced sys_vars.innodb_empty_free_list_algorithm_basic to use single buffer pool instance.
  • changed innodb buffer pool size and number of instances to the same value as in 5.7-ps-bug1651657

@@ -1346,6 +1346,24 @@ innodb_enable_monitor_at_startup(
/*=============================*/
char* str); /*!< in: monitor counter enable list */

/** Checks if buffer pool is big enough to enable backoff algorithm.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"Check if enabling given empty free list algorithm is allowed"

The header comment slightly differs between this declaration and the actual definition. I'd just move definition higher in the file so that there is no need for the declaration

@return true if it's possible to enable backoff. */
static
static inline
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just static

{
long long buf_pool_pages = srv_buf_pool_size / srv_page_size
/ (srv_buf_pool_instances > 1 ?
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why the ternary operator here?

@ihanick
Copy link
Contributor Author

ihanick commented Feb 17, 2017

http://jenkins.percona.com/job/percona-server-5.6-param/1706/

  • removed declaration for innodb_empty_free_list_algorithm_backoff_allowed
  • removed ternary operator from buf_pool_pages calculation
  • removed "inline"

@ihanick ihanick merged commit ca4ba8d into percona:5.6 Mar 31, 2017
inikep pushed a commit to inikep/percona-server that referenced this pull request May 9, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request May 10, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Jun 27, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Jun 29, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Jul 18, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Jul 19, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Jul 24, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Jul 25, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Jul 26, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Jul 27, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Aug 1, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Aug 14, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Aug 24, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit that referenced this pull request Sep 15, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue #1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Oct 16, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Oct 25, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Oct 26, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Oct 26, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Nov 1, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Nov 10, 2023
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Jan 17, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
inikep pushed a commit to inikep/percona-server that referenced this pull request Jan 17, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Jan 18, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Jan 21, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Jan 26, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Jan 30, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 12, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 12, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 12, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 15, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 15, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 15, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 16, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 16, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 16, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 16, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 16, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 16, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 16, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 18, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 29, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request May 13, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request May 24, 2024
Upstream commit ID: facebook/mysql-5.6@c75bf30
PS-8755: Merge percona-202301 (https://jira.percona.com/browse/PS-8755)

Summary:
Commit 8a8708b71da379daea13fcae90e3bb1af5d60f32
(MyRocks to support both dynamic and static plugins) caused
compiler error on Ubuntu 22.04 with gcc (Issue percona#1262).
This diff fixes it.

squash with: D41313174

Reviewed By: lth

Differential Revision: D42646920

fbshipit-source-id: 16e77bc5b0cbcc464be7ce587b37da78b4b3de8f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
2 participants