You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-01 06:21:41 +03:00
MCOL-3536 collation
This commit is contained in:
@ -18,6 +18,10 @@
|
||||
|
||||
/******************************************************************************************
|
||||
******************************************************************************************/
|
||||
#include <mariadb.h>
|
||||
#undef set_bits // mariadb.h defines set_bits, which is incompatible with boost
|
||||
#include <my_sys.h>
|
||||
|
||||
#include <string>
|
||||
#include <unistd.h>
|
||||
#include <signal.h>
|
||||
@ -39,8 +43,8 @@ using namespace oam;
|
||||
#include "distributedenginecomm.h"
|
||||
using namespace joblist;
|
||||
|
||||
#include "boost/filesystem/operations.hpp"
|
||||
#include "boost/filesystem/path.hpp"
|
||||
//#include "boost/filesystem/operations.hpp"
|
||||
//#include "boost/filesystem/path.hpp"
|
||||
#include "boost/progress.hpp"
|
||||
#include <boost/scoped_ptr.hpp>
|
||||
#include <boost/scoped_array.hpp>
|
||||
@ -64,9 +68,6 @@ using namespace execplan;
|
||||
#include "crashtrace.h"
|
||||
#include "installdir.h"
|
||||
|
||||
|
||||
namespace fs = boost::filesystem;
|
||||
|
||||
namespace
|
||||
{
|
||||
DistributedEngineComm* Dec;
|
||||
@ -98,8 +99,10 @@ void added_a_pm(int)
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
// Set locale language
|
||||
utf8::idb_setlocale();
|
||||
|
||||
setlocale(LC_ALL, "");
|
||||
setlocale(LC_NUMERIC, "C");
|
||||
// Initialize the charset library
|
||||
my_init();
|
||||
// This is unset due to the way we start it
|
||||
program_invocation_short_name = const_cast<char*>("DDLProc");
|
||||
|
||||
|
Reference in New Issue
Block a user