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

PS-6118: Azure Pipelines: uploading ccached data fails because out-of-space #3549

Merged
merged 1 commit into from
Dec 4, 2019
Merged

PS-6118: Azure Pipelines: uploading ccached data fails because out-of-space #3549

merged 1 commit into from
Dec 4, 2019

Conversation

inikep
Copy link
Collaborator

@inikep inikep commented Dec 4, 2019

  1. Limit ccache cache size to 4 GB
  2. Remove boost_1_70_0.tar.gz before Azure's ccache post-job
  3. Use '-DCMAKE_CXX_FLAGS_DEBUG=-g1' '-DCMAKE_CXX_FLAGS_RELWITHDEBINFO=-O2 -g1 -DNDEBUG'
  4. Remove "disable unit tests for gcc-8 and gcc-9"

…-space

1. Limit ccache cache size to 4 GB
2. Remove boost_1_70_0.tar.gz before Azure's ccache post-job
3. Use '-DCMAKE_CXX_FLAGS_DEBUG=-g1' '-DCMAKE_CXX_FLAGS_RELWITHDEBINFO=-O2 -g1 -DNDEBUG'
4. Remove "disable unit tests for gcc-8 and gcc-9"
@inikep
Copy link
Collaborator Author

inikep commented Dec 4, 2019

Copy link
Collaborator

@percona-ysorokin percona-ysorokin left a comment

Choose a reason for hiding this comment

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

LGTM

@inikep inikep merged commit 3024b02 into percona:8.0 Dec 4, 2019
@inikep inikep deleted the PS-6118-8.0 branch December 4, 2019 16:51
percona-ysorokin added a commit to percona-ysorokin/percona-server that referenced this pull request Jun 3, 2020
…test cases with explicit binlog positions

https://jira.percona.com/browse/PS-6789

Fixed/re-recorded the following MTR test cases because of the changes in
the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.
- 'main.ackup_safe_binlog_info'
- 'main.mysqldump-max'
- 'binlog.percona_binlog_consistent_mixed'
- 'binlog.percona_binlog_consistent_row'
- 'binlog.percona_binlog_consistent_stmt'
- 'binlog.percona_binlog_consistent_debug'
percona-ysorokin added a commit to percona-ysorokin/percona-server that referenced this pull request Jun 17, 2020
…test cases with explicit binlog positions

https://jira.percona.com/browse/PS-6789

Fixed/re-recorded the following MTR test cases because of the changes in
the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.
- 'main.ackup_safe_binlog_info'
- 'main.mysqldump-max'
- 'binlog.percona_binlog_consistent_mixed'
- 'binlog.percona_binlog_consistent_row'
- 'binlog.percona_binlog_consistent_stmt'
- 'binlog.percona_binlog_consistent_debug'
percona-ysorokin pushed a commit to percona-ysorokin/percona-server that referenced this pull request Jun 22, 2020
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
percona-ysorokin added a commit to percona-ysorokin/percona-server that referenced this pull request Jun 24, 2020
https://jira.percona.com/browse/PS-6789

***
Fixed linking issue with 'PerconaFT' by adding new 'minchassis' dependency to
'tokudbdump' and advancing git submodule commit pointer.

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
The following MTR test cases fixed/re-recorded due to the changed execution
plan (more hash joins instead of nested block loops) introduced in these
improvements
Bug #30528604 "DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261 "CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972 "ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5):
- 'tokudb.tokudb_mrr'
- 'tokudb.type_bit'
- 'tokudb.type_time'
- 'tokudb.type_year'
- 'tokudb.cluster_2968-0'
- 'tokudb.cluster_2968-1'
- 'tokudb.cluster_2968-2'
- 'tokudb.cluster_2968-3'

***
The following MTR test cases re-recorded because of the new deprecation
warning "Warning  1287  '@@max_length_for_sort_data' is deprecated ..."
introduced in the implementation of WL #13600
"Deprecate system variable max_length_for_sort_data"
(https://dev.mysql.com/worklog/task/?id=13600):
- 'tokudb.type_bit'
- 'tokudb.type_bit_innnodb'

***
Re-recorded 'tokudb.fast_upsert_values' MTR test case because of the new
deprecation warning "Warning  1287  'VALUES function' is deprecated ..."
introduced in the implementation of WL #13325
"Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Fixed/re-recorded the following MTR test cases with either 'ORDER BY' or
'--sorted_result' due to non-deterministic query order results:
- 'tokudb.type_bit'
- 'tokudb.type_year'

***
Re-recorded 'tokudb.type_temporal_fractional' MTR test case due to the
changes in the behavior of debug function 'WEIGHT_STRING()' introduced in the
fix for Oracle's Bug #30776132
"MAKE FILESORT KEYS CONSISTENT BETWEEN FIELDS AND ITEMS"
(commit mysql/mysql-server@6d587a6)

***
Re-recorded 'tokudb_rpl.rpl_tokudb_row_crash_safe' and
'tokudb_rpl.rpl_tokudb_stm_mixed_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'tokudb_rpl.rpl_tokudb_row_crash_safe' and
'tokudb_rpl.rpl_tokudb_stm_mixed_crash_safe' MTR test cases due to the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).

***
Re-recorded 'tokudb_parts.partition_max_parts_hash_tokudb' and
'tokudb_parts.partition_max_parts_key_tokudb' MTR test cases due to change in
'SHOW CREATE TABLE' that no longer shows width attribute for integer data
types that should habe been done in the 8.0.17 upstream merge.
percona-ysorokin added a commit to percona-ysorokin/percona-server that referenced this pull request Jun 26, 2020
…test cases with explicit binlog positions

https://jira.percona.com/browse/PS-6789

Fixed/re-recorded the following MTR test cases because of the changes in
the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.
- 'main.ackup_safe_binlog_info'
- 'main.mysqldump-max'
- 'binlog.percona_binlog_consistent_mixed'
- 'binlog.percona_binlog_consistent_row'
- 'binlog.percona_binlog_consistent_stmt'
- 'binlog.percona_binlog_consistent_debug'
percona-ysorokin pushed a commit to percona-ysorokin/percona-server that referenced this pull request Jun 26, 2020
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
percona-ysorokin added a commit to percona-ysorokin/percona-server that referenced this pull request Jun 26, 2020
https://jira.percona.com/browse/PS-6789

***
Fixed linking issue with 'PerconaFT' by adding new 'minchassis' dependency to
'tokudbdump' and advancing git submodule commit pointer.

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
The following MTR test cases fixed/re-recorded due to the changed execution
plan (more hash joins instead of nested block loops) introduced in these
improvements
Bug #30528604 "DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261 "CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972 "ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5):
- 'tokudb.tokudb_mrr'
- 'tokudb.type_bit'
- 'tokudb.type_time'
- 'tokudb.type_year'
- 'tokudb.cluster_2968-0'
- 'tokudb.cluster_2968-1'
- 'tokudb.cluster_2968-2'
- 'tokudb.cluster_2968-3'

***
The following MTR test cases re-recorded because of the new deprecation
warning "Warning  1287  '@@max_length_for_sort_data' is deprecated ..."
introduced in the implementation of WL #13600
"Deprecate system variable max_length_for_sort_data"
(https://dev.mysql.com/worklog/task/?id=13600):
- 'tokudb.type_bit'
- 'tokudb.type_bit_innnodb'

***
Re-recorded 'tokudb.fast_upsert_values' MTR test case because of the new
deprecation warning "Warning  1287  'VALUES function' is deprecated ..."
introduced in the implementation of WL #13325
"Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Fixed/re-recorded the following MTR test cases with either 'ORDER BY' or
'--sorted_result' due to non-deterministic query order results:
- 'tokudb.type_bit'
- 'tokudb.type_year'

***
Re-recorded 'tokudb.type_temporal_fractional' MTR test case due to the
changes in the behavior of debug function 'WEIGHT_STRING()' introduced in the
fix for Oracle's Bug #30776132
"MAKE FILESORT KEYS CONSISTENT BETWEEN FIELDS AND ITEMS"
(commit mysql/mysql-server@6d587a6)

***
Re-recorded 'tokudb_rpl.rpl_tokudb_row_crash_safe' and
'tokudb_rpl.rpl_tokudb_stm_mixed_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'tokudb_rpl.rpl_tokudb_row_crash_safe' and
'tokudb_rpl.rpl_tokudb_stm_mixed_crash_safe' MTR test cases due to the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).

***
Re-recorded 'tokudb_parts.partition_max_parts_hash_tokudb' and
'tokudb_parts.partition_max_parts_key_tokudb' MTR test cases due to change in
'SHOW CREATE TABLE' that no longer shows width attribute for integer data
types that should habe been done in the 8.0.17 upstream merge.
inikep pushed a commit to inikep/percona-server that referenced this pull request Jul 27, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Jul 27, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Aug 19, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Aug 22, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Aug 23, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Aug 24, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Aug 25, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Aug 26, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Aug 30, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Aug 30, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Sep 1, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Sep 1, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Sep 5, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Sep 7, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Sep 26, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Oct 17, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit that referenced this pull request Dec 1, 2022
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL #3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL #3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Jan 12, 2023
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Oct 26, 2023
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Nov 1, 2023
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Nov 10, 2023
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Jan 17, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
inikep pushed a commit to inikep/percona-server that referenced this pull request Jan 17, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Jan 18, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Jan 21, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Jan 26, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Jan 30, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 12, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 12, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 12, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 15, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 15, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 15, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 16, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 16, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 16, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 16, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 16, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 16, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 18, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request Apr 29, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request May 13, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
oleksandr-kachan pushed a commit to oleksandr-kachan/percona-server that referenced this pull request May 27, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
VarunNagaraju pushed a commit to VarunNagaraju/percona-server that referenced this pull request May 31, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
VarunNagaraju pushed a commit to VarunNagaraju/percona-server that referenced this pull request Jun 5, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
VarunNagaraju pushed a commit to VarunNagaraju/percona-server that referenced this pull request Jun 10, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
VarunNagaraju pushed a commit to VarunNagaraju/percona-server that referenced this pull request Jun 12, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
VarunNagaraju pushed a commit to VarunNagaraju/percona-server that referenced this pull request Jun 12, 2024
https://jira.percona.com/browse/PS-6789

***
Changed use of 'Field::real_maybe_null()' to 'Field::is_nullable()' due to
changes in the fix for Bug #30460528
"RENAME FIELD::REAL_MAYBE_NULL() TO FIELD::IS_NULLABLE()"
(mysql/mysql-server@c5f8a62).

***
'binary_log::transaction::compression::ZSTD' enum value renamed to
'binary_log::transaction::compression::ALGORITHM_ZSTD' to avoid conflicts with
'RocksDB' that has 'ZSTD' defined as a macro.

***
Restored '+x' file system attribute for the 'mysql-test/mysql-test-run.pl' that
was lost by mistake in one of the previous commits.

***
Re-recorded 'rocksdb.read_only_tx' MTR test case because of the changes in
the implementation of WL percona#3549 "Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34)
that caused increasing 'Format_description_event' binlog event size and
therefore some pre-recorded binary log positions in the '.result' files.

***
Re-recorded 'rocksdb.type_enum_indexes' MTR test case due to new
'EXPLAIN SELECT' results introduced in the implementation of
WL #13538 "Add index hints based on new hint infrastructure"
(https://dev.mysql.com/worklog/task/?id=13538)
(commit mysql/mysql-server@3f8e507)

***
Re-recorded 'rocksdb.index_merge_rocksdb2' MTR test case because of the
changed execution plan (more hash joins instead of nested block loops)
introduced in these improvements Bug #30528604
"DELETE THE PRE-ITERATOR EXECUTOR"
(commit mysql/mysql-server@ef166f8),
Bug #30473261
"CONVERT THE INDEX SUBQUERY ENGINES INTO USING THE ITERATOR EXECUTOR"
(commit mysql/mysql-server@cb4116e)
(commit mysql/mysql-server@629b549)
(commit mysql/mysql-server@5a41fba)
(commit mysql/mysql-server@31bd903)
(commit mysql/mysql-server@75bbe1b)
(commit mysql/mysql-server@6226c1a)
(commit mysql/mysql-server@0b45e96)
(commit mysql/mysql-server@8e45d7e)
(commit mysql/mysql-server@7493ae4)
(commit mysql/mysql-server@a5f60bf)
(commit mysql/mysql-server@609b86e),
Bug #30912972
"ASSERTION `KEYLEN == M_START_KEY.LENGTH' FAILED"
(commit mysql/mysql-server@b28bea5).

***
Re-recorded 'rocksdb.rocksdb' and 'rocksdb.insert_with_keys' MTR test cases
because of the new deprecation warning introduced in the implementation of
WL #13325 "Deprecate VALUES syntax in INSERT ... ON DUPLICATE KEY UPDATE"
(https://dev.mysql.com/worklog/task/?id=13325)
(commit mysql/mysql-server@6f3b9df)

***
Re-recorded 'rocksdb_rppl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases due to new column
'Require_table_primary_key_check' appearing in
'SHOW CREATE TABLE mysql.slave_relay_log_info' introduced in the
implementation of WL #13239 "Enable/disable primary key checks on slaves"
(https://dev.mysql.com/worklog/task/?id=13239)
(commit mysql/mysql-server@e51bdc3).

***
Re-recorded 'rocksdb_rpl.rpl_rocksdb_stm_mixed_crash_safe' and
'rocksdb_rpl.rpl_rocksdb_row_crash_safe' MTR test cases because of the
changes in the 'mysql-test/extra/rpl_tests/rpl_mixing_engines.inc'
include file introduced in the implementation of WL percona#3549
"Binlog: compression"
(https://dev.mysql.com/worklog/task/?id=3549)
(commit mysql/mysql-server@1e5ae34).
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