You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
clang format apply
This commit is contained in:
@ -17,21 +17,16 @@
|
||||
|
||||
#include "mariadb_my_sys.h"
|
||||
|
||||
|
||||
namespace datatypes
|
||||
{
|
||||
|
||||
static inline CHARSET_INFO & get_charset_or_bin(int32_t charsetNumber)
|
||||
static inline CHARSET_INFO& get_charset_or_bin(int32_t charsetNumber)
|
||||
{
|
||||
CHARSET_INFO *cs= get_charset(charsetNumber, MYF(MY_WME));
|
||||
return cs ? *cs : my_charset_bin;
|
||||
CHARSET_INFO* cs = get_charset(charsetNumber, MYF(MY_WME));
|
||||
return cs ? *cs : my_charset_bin;
|
||||
}
|
||||
|
||||
|
||||
Charset::Charset(uint32_t charsetNumber)
|
||||
:mCharset(&get_charset_or_bin(charsetNumber))
|
||||
Charset::Charset(uint32_t charsetNumber) : mCharset(&get_charset_or_bin(charsetNumber))
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
} // namespace datatypes
|
||||
|
Reference in New Issue
Block a user