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
Remove some files that shouldn't be in version control (If you need them, I still have them).
Some changes needded to build debug
This commit is contained in:
8
dbcon/mysql/ha_calpont.cpp
Normal file → Executable file
8
dbcon/mysql/ha_calpont.cpp
Normal file → Executable file
@ -154,12 +154,14 @@ int calpont_discover(handlerton *hton, THD* thd, TABLE_SHARE *share)
|
||||
#ifdef INFINIDB_DEBUG
|
||||
fprintf(stderr, "calpont_discover()\n");
|
||||
#endif
|
||||
DBUG_PRINT("info", ("calpont_discover."));
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int calpont_init_func(void *p)
|
||||
{
|
||||
DBUG_ENTER("calpont_init_func");
|
||||
DBUG_PRINT("info", ("calpont_init_func."));
|
||||
|
||||
struct tm tm;
|
||||
time_t t;
|
||||
@ -283,6 +285,7 @@ static handler* calpont_create_handler(handlerton *hton,
|
||||
TABLE_SHARE *table,
|
||||
MEM_ROOT *mem_root)
|
||||
{
|
||||
DBUG_PRINT("info", ("calpont_create_handler."));
|
||||
return new (mem_root) ha_calpont(hton, table);
|
||||
}
|
||||
|
||||
@ -300,6 +303,7 @@ static int calpont_rollback(handlerton *hton, THD* thd, bool all)
|
||||
|
||||
static int calpont_close_connection ( handlerton *hton, THD* thd )
|
||||
{
|
||||
DBUG_PRINT("info", ("calpont_close_connection."));
|
||||
int rc = ha_calpont_impl_close_connection( hton, thd);
|
||||
return rc;
|
||||
}
|
||||
@ -311,7 +315,9 @@ static void calpont_set_error(THD* thd, uint64_t errCode, LEX_STRING* args, uint
|
||||
|
||||
ha_calpont::ha_calpont(handlerton *hton, TABLE_SHARE *table_arg)
|
||||
:handler(hton, table_arg)
|
||||
{}
|
||||
{
|
||||
DBUG_PRINT("info", ("ha_calpont::ha_calpont."));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
|
1
dbcon/mysql/ha_calpont.h
Normal file → Executable file
1
dbcon/mysql/ha_calpont.h
Normal file → Executable file
@ -36,6 +36,7 @@
|
||||
|
||||
#ifndef HA_CALPONT_H__
|
||||
#define HA_CALPONT_H__
|
||||
#include <my_config.h>
|
||||
#include "idb_mysql.h"
|
||||
|
||||
/** @brief
|
||||
|
1
dbcon/mysql/ha_calpont_ddl.cpp
Normal file → Executable file
1
dbcon/mysql/ha_calpont_ddl.cpp
Normal file → Executable file
@ -19,6 +19,7 @@
|
||||
* $Id: ha_calpont_ddl.cpp 9675 2013-07-11 15:38:12Z chao $
|
||||
*/
|
||||
|
||||
#include <my_config.h>
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
#include <stack>
|
||||
|
1
dbcon/mysql/ha_calpont_dml.cpp
Normal file → Executable file
1
dbcon/mysql/ha_calpont_dml.cpp
Normal file → Executable file
@ -19,6 +19,7 @@
|
||||
* $Id: ha_calpont_dml.cpp 9711 2013-07-23 21:01:27Z chao $
|
||||
*/
|
||||
|
||||
#include <my_config.h>
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
#include <stack>
|
||||
|
1
dbcon/mysql/ha_calpont_execplan.cpp
Normal file → Executable file
1
dbcon/mysql/ha_calpont_execplan.cpp
Normal file → Executable file
@ -21,6 +21,7 @@
|
||||
|
||||
/** @file */
|
||||
|
||||
#include <my_config.h>
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
#include <stack>
|
||||
|
1
dbcon/mysql/ha_calpont_impl.cpp
Normal file → Executable file
1
dbcon/mysql/ha_calpont_impl.cpp
Normal file → Executable file
@ -19,6 +19,7 @@
|
||||
* $Id: ha_calpont_impl.cpp 9642 2013-06-24 14:57:42Z rdempsey $
|
||||
*/
|
||||
|
||||
#include <my_config.h>
|
||||
#ifndef _MSC_VER
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
1
dbcon/mysql/ha_calpont_partition.cpp
Normal file → Executable file
1
dbcon/mysql/ha_calpont_partition.cpp
Normal file → Executable file
@ -19,6 +19,7 @@
|
||||
* $Id: ha_calpont_partition.cpp 9642 2013-06-24 14:57:42Z rdempsey $
|
||||
*/
|
||||
|
||||
#include <my_config.h>
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
#include <cassert>
|
||||
|
1
dbcon/mysql/ha_calpont_udf.cpp
Normal file → Executable file
1
dbcon/mysql/ha_calpont_udf.cpp
Normal file → Executable file
@ -19,6 +19,7 @@
|
||||
* $Id: ha_calpont_udf.cpp 9210 2013-01-21 14:10:42Z rdempsey $
|
||||
*/
|
||||
|
||||
#include <my_config.h>
|
||||
#ifdef _MSC_VER
|
||||
#include <unordered_map>
|
||||
#else
|
||||
|
1
dbcon/mysql/ha_exists_sub.cpp
Normal file → Executable file
1
dbcon/mysql/ha_exists_sub.cpp
Normal file → Executable file
@ -24,6 +24,7 @@
|
||||
/** class ExistsSub definition */
|
||||
|
||||
//#define NDEBUG
|
||||
#include <my_config.h>
|
||||
#include <cassert>
|
||||
|
||||
#include "idb_mysql.h"
|
||||
|
1
dbcon/mysql/ha_from_sub.cpp
Normal file → Executable file
1
dbcon/mysql/ha_from_sub.cpp
Normal file → Executable file
@ -24,6 +24,7 @@
|
||||
/** class FromSubSelect definition */
|
||||
|
||||
//#define NDEBUG
|
||||
#include <my_config.h>
|
||||
#include <cassert>
|
||||
#include <map>
|
||||
using namespace std;
|
||||
|
1
dbcon/mysql/ha_in_sub.cpp
Normal file → Executable file
1
dbcon/mysql/ha_in_sub.cpp
Normal file → Executable file
@ -23,6 +23,7 @@
|
||||
/** @file */
|
||||
/** class InSub definition */
|
||||
|
||||
#include <my_config.h>
|
||||
#include <stdint.h>
|
||||
//#define NDEBUG
|
||||
#include <cassert>
|
||||
|
1
dbcon/mysql/ha_pseudocolumn.cpp
Normal file → Executable file
1
dbcon/mysql/ha_pseudocolumn.cpp
Normal file → Executable file
@ -1,3 +1,4 @@
|
||||
#include <my_config.h>
|
||||
#include <cmath>
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
|
1
dbcon/mysql/ha_scalar_sub.cpp
Normal file → Executable file
1
dbcon/mysql/ha_scalar_sub.cpp
Normal file → Executable file
@ -24,6 +24,7 @@
|
||||
/** class ScalarSub definition */
|
||||
|
||||
//#define NDEBUG
|
||||
#include <my_config.h>
|
||||
#include <cassert>
|
||||
#include <vector>
|
||||
using namespace std;
|
||||
|
1
dbcon/mysql/ha_select_sub.cpp
Normal file → Executable file
1
dbcon/mysql/ha_select_sub.cpp
Normal file → Executable file
@ -23,6 +23,7 @@
|
||||
/** class SelectSubQuery definition */
|
||||
|
||||
//#define NDEBUG
|
||||
#include <my_config.h>
|
||||
#include <cassert>
|
||||
using namespace std;
|
||||
|
||||
|
1
dbcon/mysql/ha_subquery.h
Normal file → Executable file
1
dbcon/mysql/ha_subquery.h
Normal file → Executable file
@ -27,6 +27,7 @@
|
||||
#define HA_SUBQUERY
|
||||
|
||||
//#undef LOG_INFO
|
||||
#include <my_config.h>
|
||||
#include "idb_mysql.h"
|
||||
#include "ha_calpont_impl_if.h"
|
||||
|
||||
|
1
dbcon/mysql/ha_view.cpp
Normal file → Executable file
1
dbcon/mysql/ha_view.cpp
Normal file → Executable file
@ -21,6 +21,7 @@
|
||||
*
|
||||
***********************************************************************/
|
||||
|
||||
#include <my_config.h>
|
||||
#include "idb_mysql.h"
|
||||
|
||||
#include <string>
|
||||
|
1
dbcon/mysql/ha_window_function.cpp
Normal file → Executable file
1
dbcon/mysql/ha_window_function.cpp
Normal file → Executable file
@ -20,6 +20,7 @@
|
||||
*
|
||||
*
|
||||
***********************************************************************/
|
||||
#include <my_config.h>
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
using namespace std;
|
||||
|
Reference in New Issue
Block a user