mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge 10.3 into 10.4
The MDEV-17262 commit 26432e49d3
was skipped. In Galera 4, the implementation would seem to require
changes to the streaming replication.
In the tests archive.rnd_pos main.profiling, disable_ps_protocol
for SHOW STATUS and SHOW PROFILE commands until MDEV-18974
has been fixed.
This commit is contained in:
@@ -3215,17 +3215,24 @@ err:
|
||||
DBUG_RETURN(retval == ERROR_STOP ? 1 : 0);
|
||||
}
|
||||
|
||||
uint e_key_get_latest_version_func(uint) { return 1; }
|
||||
uint e_key_get_func(uint, uint, uchar*, uint*) { return 1; }
|
||||
uint e_ctx_size_func(uint, uint) { return 1; }
|
||||
int e_ctx_init_func(void *, const uchar*, uint, const uchar*, uint,
|
||||
int, uint, uint) { return 1; }
|
||||
int e_ctx_update_func(void *, const uchar*, uint, uchar*, uint*) { return 1; }
|
||||
int e_ctx_finish_func(void *, uchar*, uint*) { return 1; }
|
||||
uint e_encrypted_length_func(uint, uint, uint) { return 1; }
|
||||
|
||||
uint dummy1() { return 1; }
|
||||
struct encryption_service_st encryption_handler=
|
||||
{
|
||||
(uint(*)(uint))dummy1,
|
||||
(uint(*)(uint, uint, uchar*, uint*))dummy1,
|
||||
(uint(*)(uint, uint))dummy1,
|
||||
(int (*)(void*, const uchar*, uint, const uchar*, uint, int, uint, uint))dummy1,
|
||||
(int (*)(void*, const uchar*, uint, uchar*, uint*))dummy1,
|
||||
(int (*)(void*, uchar*, uint*))dummy1,
|
||||
(uint (*)(uint, uint, uint))dummy1
|
||||
e_key_get_latest_version_func,
|
||||
e_key_get_func,
|
||||
e_ctx_size_func,
|
||||
e_ctx_init_func,
|
||||
e_ctx_update_func,
|
||||
e_ctx_finish_func,
|
||||
e_encrypted_length_func
|
||||
};
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user