diff options
author | Monty <monty@mariadb.org> | 2019-08-08 22:52:22 +0300 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2019-08-23 22:03:54 +0200 |
commit | a38f47e90ce8273e83b4151cd93a0a224420f69b (patch) | |
tree | 3faafa530d602fe2440dfaf13dec4ad23e24c265 /storage/connect/plgdbutl.cpp | |
parent | de8b51fdc9d998fdf9c2d5c317a6da063c73d84a (diff) | |
download | mariadb-git-a38f47e90ce8273e83b4151cd93a0a224420f69b.tar.gz |
Fixed compiler warnings from connect engine
- clang complains about register in C++
- Removed not used variables
- Fixed bug when printing date in filamdbf.cpp
- Added {} to fix warning about dangling else
- Changed connect_done_func() to be global to remove conflict with header
files
- Added extra () around assignment in if
Diffstat (limited to 'storage/connect/plgdbutl.cpp')
-rw-r--r-- | storage/connect/plgdbutl.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/storage/connect/plgdbutl.cpp b/storage/connect/plgdbutl.cpp index e296553d8e2..54808aa682f 100644 --- a/storage/connect/plgdbutl.cpp +++ b/storage/connect/plgdbutl.cpp @@ -425,6 +425,8 @@ char *ExtractFromPath(PGLOBAL g, char *pBuff, char *FileName, OPVAL op) return pBuff; } // end of PlgExtractFromPath + +#ifdef NOT_USED /***********************************************************************/ /* Check the occurence and matching of a pattern against a string. */ /* Because this function is only used for catalog name checking, */ @@ -443,6 +445,7 @@ static bool PlugCheckPattern(PGLOBAL g, LPCSTR string, LPCSTR pat) return true; } // end of PlugCheckPattern +#endif /* NOT_USED */ /***********************************************************************/ /* PlugEvalLike: evaluates a LIKE clause. */ |