diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2020-12-02 00:35:58 +0100 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2020-12-02 00:35:58 +0100 |
commit | 4b6d661c7f4bcf9f0f5a9f5d5f4a6743983fc9a5 (patch) | |
tree | 2bbd553f40259f5e81c43c8de06419fb1da976c8 | |
parent | 7d439334fffcd9b44e524e3b8e3ef59009ebcac0 (diff) | |
download | mariadb-git-4b6d661c7f4bcf9f0f5a9f5d5f4a6743983fc9a5.tar.gz |
Fix failed compile modified storage/connect/ha_connect.cc
-rw-r--r-- | storage/connect/ha_connect.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/storage/connect/ha_connect.cc b/storage/connect/ha_connect.cc index fc67edc5330..95f885c65b4 100644 --- a/storage/connect/ha_connect.cc +++ b/storage/connect/ha_connect.cc @@ -170,7 +170,7 @@ #define JSONMAX 10 // JSON Default max grp size extern "C" { - char version[]= "Version 1.07.0002 December 01, 2020"; + char version[]= "Version 1.07.0002 December 02, 2020"; #if defined(__WIN__) char compver[]= "Version 1.07.0002 " __DATE__ " " __TIME__; char slash= '\\'; @@ -4569,6 +4569,7 @@ bool ha_connect::check_privileges(THD *thd, PTOS options, char *dbn, bool quick) case TAB_OCCUR: case TAB_PIVOT: case TAB_VIR: + default: // This is temporary until a solution is found return false; } // endswitch type |