mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
MDEV-23539: aws key plugin - fails to build
Recent gcc/clang versions failed to compile the existing code. Updating a later upstream SDK version was simple and required only implementing a flush method. This was left blank as there was no strong requirement to keep the error log atomic or durable. Reviewed-by: wlad@mariadb.com The upstream SDK version added a flush method which was simple to complete.
This commit is contained in:
parent
c4f8ccc0f5
commit
045671d473
2 changed files with 5 additions and 1 deletions
|
@ -34,7 +34,7 @@ ENDFOREACH()
|
|||
IF(CMAKE_VERSION LESS "3.0")
|
||||
SET(GIT_TAG "1.0.8")
|
||||
ELSE()
|
||||
SET(GIT_TAG "1.2.11")
|
||||
SET(GIT_TAG "1.8.29")
|
||||
ENDIF()
|
||||
|
||||
IF(MSVC_CRT_TYPE MATCHES "/MD")
|
||||
|
|
|
@ -161,6 +161,10 @@ public:
|
|||
{
|
||||
}
|
||||
|
||||
virtual void Flush(void) override
|
||||
{
|
||||
}
|
||||
|
||||
protected:
|
||||
virtual void ProcessFormattedStatement(Aws::String&& statement) override
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue