1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

clang format apply

This commit is contained in:
Leonid Fedorov
2022-02-11 12:24:40 +00:00
parent 509f005be7
commit 7c808317dc
1367 changed files with 394342 additions and 413129 deletions

View File

@ -14,7 +14,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA. */
//One include file to deal with all the MySQL pollution of the
// One include file to deal with all the MySQL pollution of the
// global namespace
//
// Don't include ANY mysql headers anywhere except here!
@ -28,14 +28,15 @@
#ifdef _MSC_VER
#include <stdint.h>
#if _MSC_VER >= 1800
template <class T> bool isnan(T);
template <class T>
bool isnan(T);
#endif
#endif
//#define INFINIDB_DEBUG
//#define DEBUG_WALK_COND
#define MYSQL_SERVER 1 //needed for definition of struct THD in mysql_priv.h
#define MYSQL_SERVER 1 // needed for definition of struct THD in mysql_priv.h
#define USE_CALPONT_REGEX
#undef LOG_INFO
@ -54,7 +55,7 @@ template <class T> bool isnan(T);
#endif
#define DBUG_ON 1
#undef DBUG_OFF
#undef DBUG_OFF
#else
#undef SAFE_MUTEX
#undef SAFEMALLOC
@ -111,12 +112,12 @@ namespace
inline char* idb_mysql_query_str(THD* thd)
{
#if MYSQL_VERSION_ID >= 50172
return thd->query();
return thd->query();
#else
return thd->query;
return thd->query;
#endif
}
}
} // namespace
#endif
// vim:ts=4 sw=4: