You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
Change HA_ERR_INTERNAL_ERROR to ER_INTERNAL_ERROR to match MariaDB
Remove nightly queries from the code base
This commit is contained in:
@ -1799,7 +1799,7 @@ int ProcessDDLStatement(string& ddlStatement, string& schema, const string& tabl
|
||||
rc = 1;
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Lost connection to DDLProc");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Lost connection to DDLProc");
|
||||
ci->alterTableState = cal_connection_info::NOT_ALTER;
|
||||
ci->isAlter = false;
|
||||
}
|
||||
@ -1815,7 +1815,7 @@ int ProcessDDLStatement(string& ddlStatement, string& schema, const string& tabl
|
||||
rc =1;
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Lost connection to DDLProc");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Lost connection to DDLProc");
|
||||
ci->alterTableState = cal_connection_info::NOT_ALTER;
|
||||
ci->isAlter = false;
|
||||
}
|
||||
@ -1824,7 +1824,7 @@ int ProcessDDLStatement(string& ddlStatement, string& schema, const string& tabl
|
||||
rc = 1;
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Unknown error caught");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Unknown error caught");
|
||||
ci->alterTableState = cal_connection_info::NOT_ALTER;
|
||||
ci->isAlter = false;
|
||||
}
|
||||
@ -1833,7 +1833,7 @@ int ProcessDDLStatement(string& ddlStatement, string& schema, const string& tabl
|
||||
{
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, emsg.c_str());
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, emsg.c_str());
|
||||
}
|
||||
|
||||
if (b ==ddlpackageprocessor::DDLPackageProcessor::WARNING)
|
||||
@ -1949,7 +1949,7 @@ int ha_calpont_impl_create_(const char *name, TABLE *table_arg, HA_CREATE_INFO *
|
||||
&& tbl != "sysconstraintcol" )
|
||||
{
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Can not create non-system Calpont tables in calpontsys database");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Can not create non-system Calpont tables in calpontsys database");
|
||||
return 1;
|
||||
}
|
||||
|
||||
@ -1979,13 +1979,13 @@ int ha_calpont_impl_create_(const char *name, TABLE *table_arg, HA_CREATE_INFO *
|
||||
if (db == "calpontsys")
|
||||
{
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Calpont system tables can only be created with 'SCHEMA SYNC ONLY'");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Calpont system tables can only be created with 'SCHEMA SYNC ONLY'");
|
||||
return 1;
|
||||
}
|
||||
else if ( db == "infinidb_vtable") //@bug 3540. table created in infinidb_vtable schema could be dropped when select statement happen to have same tablename.
|
||||
{
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Table creation is not allowed in infinidb_vtable schema.");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Table creation is not allowed in infinidb_vtable schema.");
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
@ -282,7 +282,7 @@ int ProcessCommandStatement(THD *thd, string& dmlStatement, cal_connection_info&
|
||||
thd->killed = KILL_QUERY;
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Lost connection to DMLProc [1]");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Lost connection to DMLProc [1]");
|
||||
}
|
||||
else {
|
||||
bytestream >> b;
|
||||
@ -296,7 +296,7 @@ int ProcessCommandStatement(THD *thd, string& dmlStatement, cal_connection_info&
|
||||
thd->killed = KILL_QUERY;
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Lost connection to DMLProc [2]");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Lost connection to DMLProc [2]");
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
@ -304,14 +304,14 @@ int ProcessCommandStatement(THD *thd, string& dmlStatement, cal_connection_info&
|
||||
thd->killed = KILL_QUERY;
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Caught unknown error");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Caught unknown error");
|
||||
}
|
||||
|
||||
if (( b !=0 ) && (!thd->get_stmt_da()->is_set()))
|
||||
{
|
||||
rc = 1;
|
||||
thd->killed = KILL_QUERY;
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, errormsg.c_str());
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, errormsg.c_str());
|
||||
}
|
||||
delete ci.dmlProc;
|
||||
ci.dmlProc = NULL;
|
||||
@ -338,7 +338,7 @@ int doProcessInsertValues ( TABLE* table, uint32_t size, cal_connection_info& ci
|
||||
rc = -1;
|
||||
string emsg("Calpont DML package cannot build. ");
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, emsg.c_str());
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, emsg.c_str());
|
||||
return rc;
|
||||
}
|
||||
|
||||
@ -503,7 +503,7 @@ int doProcessInsertValues ( TABLE* table, uint32_t size, cal_connection_info& ci
|
||||
if ((b != 0) && (b != dmlpackageprocessor::DMLPackageProcessor::IDBRANGE_WARNING))
|
||||
{
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, errormsg.c_str());
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, errormsg.c_str());
|
||||
|
||||
}
|
||||
if ( b == dmlpackageprocessor::DMLPackageProcessor::IDBRANGE_WARNING )
|
||||
@ -567,7 +567,7 @@ int ha_calpont_impl_write_last_batch(TABLE* table, cal_connection_info& ci, bool
|
||||
rc = 1;
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
std::string errormsg = "statement is aborted.";
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, errormsg.c_str());
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, errormsg.c_str());
|
||||
}
|
||||
|
||||
if ( rc == dmlpackageprocessor::DMLPackageProcessor::ACTIVE_TRANSACTION_ERROR )
|
||||
@ -619,7 +619,7 @@ int ha_calpont_impl_write_row_(uchar *buf, TABLE* table, cal_connection_info& ci
|
||||
rc = 1;
|
||||
ci.rc = rc; //@Bug 2790 Save the error infomation.
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, rex.what());
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, rex.what());
|
||||
return rc;
|
||||
}
|
||||
//timer.stop( "buildValueList");
|
||||
@ -1581,7 +1581,7 @@ int ha_calpont_impl_write_batch_row_(uchar *buf, TABLE* table, cal_impl_if::cal_
|
||||
if ( bytestream.length() == 0 )
|
||||
{
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Lost connection to DMLProc [5]");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Lost connection to DMLProc [5]");
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -1595,12 +1595,12 @@ int ha_calpont_impl_write_batch_row_(uchar *buf, TABLE* table, cal_impl_if::cal_
|
||||
catch (runtime_error&)
|
||||
{
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Lost connection to DMLProc [6]");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Lost connection to DMLProc [6]");
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Caught unknown error");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Caught unknown error");
|
||||
}
|
||||
if ( b != 0 )
|
||||
tableLockInfo = errorMsg;
|
||||
@ -1653,7 +1653,7 @@ int ha_calpont_impl_write_batch_row_(uchar *buf, TABLE* table, cal_impl_if::cal_
|
||||
eMsg += prelimTask;
|
||||
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, eMsg.c_str());
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, eMsg.c_str());
|
||||
return tableLockInfo;
|
||||
}
|
||||
catch (...)
|
||||
@ -1662,7 +1662,7 @@ int ha_calpont_impl_write_batch_row_(uchar *buf, TABLE* table, cal_impl_if::cal_
|
||||
eMsg += prelimTask;
|
||||
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, eMsg.c_str());
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, eMsg.c_str());
|
||||
return tableLockInfo;
|
||||
}
|
||||
|
||||
@ -1694,7 +1694,7 @@ int ha_calpont_impl_write_batch_row_(uchar *buf, TABLE* table, cal_impl_if::cal_
|
||||
if ( bytestream.length() == 0 )
|
||||
{
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Lost connection to DMLProc [7]");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Lost connection to DMLProc [7]");
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -1708,12 +1708,12 @@ int ha_calpont_impl_write_batch_row_(uchar *buf, TABLE* table, cal_impl_if::cal_
|
||||
catch (runtime_error&)
|
||||
{
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Lost connection to DMLProc [8]");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Lost connection to DMLProc [8]");
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Caught unknown error");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Caught unknown error");
|
||||
}
|
||||
//@Bug 2606. Send error message back to sql session
|
||||
if ( b != 0 )
|
||||
|
@ -1165,7 +1165,7 @@ uint32_t doUpdateDelete(THD *thd)
|
||||
else
|
||||
{
|
||||
string emsg("Deleting rows from multiple tables in a single statement is currently not supported.");
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, emsg.c_str());
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, emsg.c_str());
|
||||
ci->rc = 1;
|
||||
thd->set_row_count_func(0);
|
||||
return 0;
|
||||
@ -1224,7 +1224,7 @@ uint32_t doUpdateDelete(THD *thd)
|
||||
if (/*( select_lex.explicit_limit ) || */( select_lex.order_list.elements != 0 ) )
|
||||
{
|
||||
string emsg("DML Statement with order by clause is not currently supported.");
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, emsg.c_str());
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, emsg.c_str());
|
||||
ci->rc = 1;
|
||||
thd->set_row_count_func(0);
|
||||
return 0;
|
||||
@ -1317,7 +1317,7 @@ uint32_t doUpdateDelete(THD *thd)
|
||||
//error out for now. Wait for scalar join.
|
||||
/* Message::Args args;
|
||||
string emsg(IDBErrorInfo::instance()->errorMsg(ERR_COLUMN_EQ_DIFFTABLE_COLUMN, args));
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, emsg.c_str());
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, emsg.c_str());
|
||||
ci->rc = 1;
|
||||
thd->set_row_count_func(0);
|
||||
return 0;
|
||||
@ -1661,7 +1661,7 @@ uint32_t doUpdateDelete(THD *thd)
|
||||
if ( ( b != 0 ) && (b != dmlpackageprocessor::DMLPackageProcessor::IDBRANGE_WARNING))
|
||||
{
|
||||
//@Bug 2540. Set error status instead of warning
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, errorMsg.c_str());
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, errorMsg.c_str());
|
||||
ci->rc = b;
|
||||
thd->set_row_count_func(0);
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
|
@ -482,7 +482,7 @@ int processPartition ( SqlStatement* stmt)
|
||||
{
|
||||
rc = 1;
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Lost connection to DDLProc");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Lost connection to DDLProc");
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -495,13 +495,13 @@ int processPartition ( SqlStatement* stmt)
|
||||
{
|
||||
rc =1;
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Lost connection to DDLProc");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Lost connection to DDLProc");
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
rc = 1;
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, "Unknown error caught");
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, "Unknown error caught");
|
||||
}
|
||||
|
||||
if (b == ddlpackageprocessor::DDLPackageProcessor::WARN_NO_PARTITION)
|
||||
@ -523,7 +523,7 @@ int processPartition ( SqlStatement* stmt)
|
||||
else if (b != 0 && b != ddlpackageprocessor::DDLPackageProcessor::WARN_NO_PARTITION)
|
||||
{
|
||||
thd->get_stmt_da()->set_overwrite_status(true);
|
||||
thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, emsg.c_str());
|
||||
thd->raise_error_printf(ER_INTERNAL_ERROR, emsg.c_str());
|
||||
}
|
||||
return rc;
|
||||
}
|
||||
@ -1195,7 +1195,7 @@ const char* calenablepartitions(UDF_INIT* initid, UDF_ARGS* args,
|
||||
if (!current_thd->db)
|
||||
{
|
||||
current_thd->get_stmt_da()->set_overwrite_status(true);
|
||||
current_thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, IDBErrorInfo::instance()->errorMsg(ERR_PARTITION_NO_SCHEMA).c_str());
|
||||
current_thd->raise_error_printf(ER_INTERNAL_ERROR, IDBErrorInfo::instance()->errorMsg(ERR_PARTITION_NO_SCHEMA).c_str());
|
||||
return result;
|
||||
}
|
||||
tableName.schema = current_thd->db;
|
||||
@ -1279,7 +1279,7 @@ const char* caldroppartitions(UDF_INIT* initid, UDF_ARGS* args,
|
||||
if (!current_thd->db)
|
||||
{
|
||||
current_thd->get_stmt_da()->set_overwrite_status(true);
|
||||
current_thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, IDBErrorInfo::instance()->errorMsg(ERR_PARTITION_NO_SCHEMA).c_str());
|
||||
current_thd->raise_error_printf(ER_INTERNAL_ERROR, IDBErrorInfo::instance()->errorMsg(ERR_PARTITION_NO_SCHEMA).c_str());
|
||||
return result;
|
||||
}
|
||||
tableName.schema = current_thd->db;
|
||||
@ -1365,7 +1365,7 @@ const char* caldroppartitionsbyvalue(UDF_INIT* initid, UDF_ARGS* args,
|
||||
if (!msg.empty())
|
||||
{
|
||||
current_thd->get_stmt_da()->set_overwrite_status(true);
|
||||
current_thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, msg.c_str());
|
||||
current_thd->raise_error_printf(ER_INTERNAL_ERROR, msg.c_str());
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -1436,7 +1436,7 @@ const char* caldisablepartitionsbyvalue(UDF_INIT* initid, UDF_ARGS* args,
|
||||
if (!msg.empty())
|
||||
{
|
||||
current_thd->get_stmt_da()->set_overwrite_status(true);
|
||||
current_thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, msg.c_str());
|
||||
current_thd->raise_error_printf(ER_INTERNAL_ERROR, msg.c_str());
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -1507,7 +1507,7 @@ const char* calenablepartitionsbyvalue(UDF_INIT* initid, UDF_ARGS* args,
|
||||
if (!msg.empty())
|
||||
{
|
||||
current_thd->get_stmt_da()->set_overwrite_status(true);
|
||||
current_thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, msg.c_str());
|
||||
current_thd->raise_error_printf(ER_INTERNAL_ERROR, msg.c_str());
|
||||
return result;
|
||||
}
|
||||
|
||||
|
@ -45,7 +45,7 @@ void bailout(char* error, const string& funcName)
|
||||
{
|
||||
string errMsg = IDBErrorInfo::instance()->errorMsg(ERR_PSEUDOCOL_IDB_ONLY, funcName);
|
||||
current_thd->get_stmt_da()->set_overwrite_status(true);
|
||||
current_thd->raise_error_printf(HA_ERR_INTERNAL_ERROR, errMsg.c_str());
|
||||
current_thd->raise_error_printf(ER_INTERNAL_ERROR, errMsg.c_str());
|
||||
*error = 1;
|
||||
}
|
||||
|
||||
|
352
genii.vpwhistu
352
genii.vpwhistu
@ -1,352 +0,0 @@
|
||||
[Global]
|
||||
CurrentProject=exemgr/exemgr.vpj
|
||||
[ProjectDates]
|
||||
tools/configMgt/autoConfigure.vpj=20131028163559000
|
||||
utils/batchloader/batchloader.vpj=20131028163302000
|
||||
primitives/blockcache/blockcache.vpj=20131028163251000
|
||||
utils/boost_idb/boost_idb.vpj=20131028163319000
|
||||
versioning/BRM/brm.vpj=20131028163600000
|
||||
writeengine/bulk/bulk.vpj=20131028163458000
|
||||
utils/cacheutils/cacheutils.vpj=20131028163255000
|
||||
oamapps/calpont-console/calpontConsole.vpj=20160105232646000
|
||||
oamapps/calpontDB/calpontDBWrite.vpj=20131028163403000
|
||||
tools/dbloadxml/colxml.vpj=20131028163557000
|
||||
utils/common/common.vpj=20131028163254000
|
||||
utils/compress/compress.vpj=20131028163319000
|
||||
utils/configcpp/configcpp.vpj=20131028163257000
|
||||
utils/dataconvert/dataconvert.vpj=20131028163255000
|
||||
utils/ddlcleanup/ddlcleanup.vpj=20131028163300000
|
||||
dbcon/ddlpackage/ddlpackage.vpj=20131028163352000
|
||||
dbcon/ddlpackageproc/ddlpackageproc.vpj=20131028163341000
|
||||
ddlproc/ddlproc.vpj=20131028163559000
|
||||
writeengine/dictionary/dictionary.vpj=20131028163511000
|
||||
dbcon/dmlpackage/dmlpackage.vpj=20131028163343000
|
||||
dbcon/dmlpackageproc/dmlpackageproc.vpj=20131028163340000
|
||||
dmlproc/dmlproc.vpj=20131028163513000
|
||||
tools/editem/editem.vpj=20131028163558000
|
||||
dbcon/execplan/execplan.vpj=20131028163401000
|
||||
exemgr/exemgr.vpj=20131028163435000
|
||||
utils/funcexp/funcexp.vpj=20131028163322000
|
||||
oamapps/hardwareMonitor/HardwareMonitor.vpj=20131028163404000
|
||||
tools/hdfsCheck/hdfsCheck.vpj=20131028163558000
|
||||
utils/idbdatafile/idbdatafile.vpj=20131028163254000
|
||||
utils/idbhdfs/idbhdfs.vpj=20131028163256000
|
||||
dbcon/ingres/ingres.vpj=20131028163401000
|
||||
dbcon/joblist/joblist.vpj=20141105231726000
|
||||
utils/joiner/joiner.vpj=20131028163316000
|
||||
primitives/linux-port/linux-port.vpj=20131028163250000
|
||||
utils/loggingcpp/loggingcpp.vpj=20131028163259000
|
||||
utils/messageqcpp/messageqcpp.vpj=20131028163254000
|
||||
utils/multicast/multicast.vpj=20131028163256000
|
||||
dbcon/mysql/mysql.vpj=20160104211036000
|
||||
oam/oamcpp/oamcpp.vpj=20131028163553000
|
||||
oamapps/postConfigure/postConfigure.vpj=20131028163403000
|
||||
primitives/primproc/primproc.vpj=20131028163250000
|
||||
procmgr/procmgr.vpj=20131028163620000
|
||||
procmon/procmon.vpj=20131028163552000
|
||||
oamapps/replayTransactionLog/ReplayTransactionLog.vpj=20131028163404000
|
||||
oamapps/resourceMonitor/resourceMonitor.vpj=20131028163404000
|
||||
utils/rowgroup/rowgroup.vpj=20131028163319000
|
||||
utils/rwlock/rwlock.vpj=20131028163255000
|
||||
oamapps/serverMonitor/ServerMonitor.vpj=20131028163404000
|
||||
writeengine/splitter/splitter.vpj=20131028163510000
|
||||
utils/startup/startup.vpj=20131028163254000
|
||||
utils/dataconvert/tdriver.vpj=20131028163255000
|
||||
utils/threadpool/threadpool.vpj=20131028163256000
|
||||
utils/udfsdk/udfsdk.vpj=20141119175501000
|
||||
utils/utils.vpj=20131028163300000
|
||||
writeengine/wrapper/wrapper.vpj=20131028163513000
|
||||
writeengine/client/writeengineclient.vpj=20131028163503000
|
||||
writeengine/server/WriteEngineServer.vpj=20131028163453000
|
||||
[TreeExpansion2]
|
||||
+@ oamapps/hardwareMonitor/HardwareMonitor.vpj
|
||||
+@ oamapps/replayTransactionLog/ReplayTransactionLog.vpj
|
||||
+@ oamapps/serverMonitor/ServerMonitor.vpj
|
||||
+@ writeengine/server/WriteEngineServer.vpj
|
||||
+@ tools/configMgt/autoConfigure.vpj
|
||||
+@ utils/batchloader/batchloader.vpj
|
||||
+@ primitives/blockcache/blockcache.vpj
|
||||
+@ utils/boost_idb/boost_idb.vpj
|
||||
+@ versioning/BRM/brm.vpj
|
||||
+@ writeengine/bulk/bulk.vpj
|
||||
+@ utils/cacheutils/cacheutils.vpj
|
||||
+@ oamapps/calpont-console/calpontConsole.vpj
|
||||
+@ oamapps/calpontDB/calpontDBWrite.vpj
|
||||
+@ tools/dbloadxml/colxml.vpj
|
||||
+@ utils/common/common.vpj
|
||||
+@ utils/compress/compress.vpj
|
||||
+@ utils/configcpp/configcpp.vpj
|
||||
+@ utils/dataconvert/dataconvert.vpj
|
||||
+@ utils/ddlcleanup/ddlcleanup.vpj
|
||||
+@ dbcon/ddlpackage/ddlpackage.vpj
|
||||
+@ dbcon/ddlpackageproc/ddlpackageproc.vpj
|
||||
+@ ddlproc/ddlproc.vpj
|
||||
+@ writeengine/dictionary/dictionary.vpj
|
||||
+@ dbcon/dmlpackage/dmlpackage.vpj
|
||||
+@ dbcon/dmlpackageproc/dmlpackageproc.vpj
|
||||
+@ dmlproc/dmlproc.vpj
|
||||
+@ tools/editem/editem.vpj
|
||||
+@ dbcon/execplan/execplan.vpj
|
||||
+@ exemgr/exemgr.vpj
|
||||
+@ utils/funcexp/funcexp.vpj
|
||||
+@ tools/hdfsCheck/hdfsCheck.vpj
|
||||
+@ utils/idbdatafile/idbdatafile.vpj
|
||||
+@ utils/idbhdfs/idbhdfs.vpj
|
||||
+@ dbcon/ingres/ingres.vpj
|
||||
+@ dbcon/joblist/joblist.vpj
|
||||
+@ utils/joiner/joiner.vpj
|
||||
+@ primitives/linux-port/linux-port.vpj
|
||||
+@ utils/loggingcpp/loggingcpp.vpj
|
||||
+@ utils/messageqcpp/messageqcpp.vpj
|
||||
+@ utils/multicast/multicast.vpj
|
||||
+@ dbcon/mysql/mysql.vpj
|
||||
-@ oam/oamcpp/oamcpp.vpj
|
||||
- Source Files
|
||||
- Header Files
|
||||
+ Resource Files
|
||||
+ Bitmaps
|
||||
+ Other Files
|
||||
+@ oamapps/postConfigure/postConfigure.vpj
|
||||
+@ primitives/primproc/primproc.vpj
|
||||
+@ procmgr/procmgr.vpj
|
||||
-@ procmon/procmon.vpj
|
||||
- Source Files
|
||||
+ Header Files
|
||||
+ Resource Files
|
||||
+ Bitmaps
|
||||
+ Other Files
|
||||
+@ oamapps/resourceMonitor/resourceMonitor.vpj
|
||||
+@ utils/rowgroup/rowgroup.vpj
|
||||
+@ utils/rwlock/rwlock.vpj
|
||||
+@ writeengine/splitter/splitter.vpj
|
||||
+@ utils/startup/startup.vpj
|
||||
+@ utils/dataconvert/tdriver.vpj
|
||||
+@ utils/threadpool/threadpool.vpj
|
||||
+@ utils/udfsdk/udfsdk.vpj
|
||||
+@ utils/utils.vpj
|
||||
+@ writeengine/wrapper/wrapper.vpj
|
||||
+@ writeengine/client/writeengineclient.vpj
|
||||
scroll:0
|
||||
[State]
|
||||
SCREEN: 1856 996 466 0 1382 939 0 0 N 0 0 0 0 965 533 0
|
||||
CWD: ../mariadb/sql
|
||||
BUFFER: BN="../mariadb/sql/sql_plugin.cc"
|
||||
BI: MA=1 74 1 TABS=1 5 WWS=1 IWT=1 ST=0 IN=2 BW=0 US=32000 RO=0 SE=1 SN=0 BIN=0 MN=C/C++ HM=0 MF=616 TL=0 MLL=0 ASE=0 LNL=1 LCF=0 CAPS=0 E=0 ESBU2=1 CL="" SC="" SCE= SCU=
|
||||
VIEW: LN=.35765 CL=1 LE=0 CX=2 CY=9 WI=5 BI=35 HT=0 HN=0 HF=0 HC=4
|
||||
BUFFER: BN="export/include/idb_mysql.h"
|
||||
BI: MA=1 74 1 TABS=1 5 WWS=1 IWT=1 ST=0 IN=2 BW=0 US=32000 RO=0 SE=1 SN=0 BIN=0 MN=C/C++ HM=0 MF=616 TL=0 MLL=0 ASE=0 LNL=1 LCF=0 CAPS=0 E=0 ESBU2=1 CL="" SC="" SCE= SCU=
|
||||
VIEW: LN=.1378 CL=48 LE=0 CX=49 CY=27 WI=5 BI=29 HT=0 HN=0 HF=0 HC=4
|
||||
BUFFER: BN="../mariadb/storage/innobase/handler/ha_innodb.cc"
|
||||
BI: MA=1 74 1 TABS=1 5 WWS=1 IWT=1 ST=0 IN=2 BW=0 US=32000 RO=0 SE=1 SN=0 BIN=0 MN=C/C++ HM=0 MF=104 TL=0 MLL=0 ASE=0 LNL=1 LCF=0 CAPS=0 E=0 ESBU2=1 CL="" SC="" SCE= SCU=
|
||||
VIEW: LN=.1684 CL=22 LE=0 CX=23 CY=15 WI=5 BI=28 HT=0 HN=0 HF=0 HC=4
|
||||
BUFFER: BN="dbcon/mysql/idb_mysql.h"
|
||||
BI: MA=1 74 1 TABS=1 5 WWS=1 IWT=1 ST=0 IN=2 BW=0 US=32000 RO=0 SE=1 SN=0 BIN=0 MN=C/C++ HM=0 MF=1049192 TL=0 MLL=0 ASE=0 LNL=1 LCF=0 CAPS=0 E=0 ESBU2=1 CL="" SC="" SCE= SCU=
|
||||
VIEW: LN=.1353 CL=1 LE=0 CX=2 CY=16 WI=5 BI=34 HT=0 HN=0 HF=0 HC=4
|
||||
BUFFER: BN="utils/udfsdk/Makefile"
|
||||
BI: MA=1 74 1 TABS=1 9 WWS=1 IWT=1 ST=0 IN=1 BW=0 US=32000 RO=0 SE=1 SN=0 BIN=0 MN=Makefile HM=0 MF=131688 TL=0 MLL=0 ASE=0 LNL=1 LCF=0 CAPS=0 E=0 ESBU2=1 CL="" SC="" SCE= SCU=
|
||||
VIEW: LN=.509 CL=102 LE=0 CX=103 CY=18 WI=5 BI=30 HT=0 HN=0 HF=0 HC=4
|
||||
BUFFER: BN="../mariadb/sql/table.h"
|
||||
BI: MA=1 74 1 TABS=1 5 WWS=1 IWT=1 ST=0 IN=2 BW=0 US=32000 RO=0 SE=1 SN=0 BIN=0 MN=C/C++ HM=0 MF=616 TL=0 MLL=0 ASE=0 LNL=1 LCF=0 CAPS=0 E=0 ESBU2=1 CL="" SC="" SCE= SCU=
|
||||
VIEW: LN=.43633 CL=64 LE=0 CX=65 CY=19 WI=5 BI=31 HT=0 HN=0 HF=0 HC=4
|
||||
BUFFER: BN="../mariadb/sql/sql_plugin.h"
|
||||
BI: MA=1 74 1 TABS=1 5 WWS=1 IWT=1 ST=0 IN=2 BW=0 US=32000 RO=0 SE=1 SN=0 BIN=0 MN=C/C++ HM=0 MF=616 TL=0 MLL=0 ASE=0 LNL=1 LCF=0 CAPS=0 E=0 ESBU2=1 CL="" SC="" SCE= SCU=
|
||||
VIEW: LN=.3925 CL=16 LE=0 CX=17 CY=2 WI=5 BI=4 HT=0 HN=0 HF=0 HC=4
|
||||
BUFFER: BN="../mariadb/include/my_config.h"
|
||||
BI: MA=1 74 1 TABS=1 5 WWS=1 IWT=1 ST=0 IN=2 BW=0 US=32000 RO=0 SE=1 SN=0 BIN=0 MN=C/C++ HM=0 MF=616 TL=0 MLL=0 ASE=0 LNL=1 LCF=0 CAPS=0 E=0 ESBU2=1 CL="" SC="" SCE= SCU=
|
||||
VIEW: LN=.10933 CL=24 LE=0 CX=25 CY=19 WI=5 BI=32 HT=0 HN=0 HF=0 HC=4
|
||||
BUFFER: BN="../mariadb/include/my_global.h"
|
||||
BI: MA=1 74 1 TABS=1 5 WWS=1 IWT=1 ST=0 IN=2 BW=0 US=32000 RO=0 SE=1 SN=0 BIN=0 MN=C/C++ HM=0 MF=608 TL=0 MLL=0 ASE=0 LNL=1 LCF=0 CAPS=0 E=0 ESBU2=1 CL="" SC="" SCE= SCU=
|
||||
VIEW: LN=.29646 CL=34 LE=0 CX=35 CY=18 WI=5 BI=37 HT=0 HN=0 HF=0 HC=4
|
||||
BUFFER: BN="oam/oamcpp/liboamcpp.h"
|
||||
BI: MA=1 74 1 TABS=1 5 WWS=1 IWT=1 ST=0 IN=2 BW=0 US=32000 RO=0 SE=1 SN=0 BIN=0 MN=C/C++ HM=0 MF=1049184 TL=0 MLL=0 ASE=0 LNL=1 LCF=0 CAPS=0 E=0 ESBU2=1 CL="" SC="" SCE= SCU=
|
||||
VIEW: LN=.16474 CL=30 LE=0 CX=31 CY=22 WI=5 BI=36 HT=0 HN=0 HF=0 HC=4
|
||||
BUFFER: BN="../mariadb/sql/item_cmpfunc.h"
|
||||
BI: MA=1 74 1 TABS=1 5 WWS=1 IWT=1 ST=0 IN=2 BW=0 US=32000 RO=0 SE=1 SN=0 BIN=0 MN=C/C++ HM=0 MF=131680 TL=0 MLL=0 ASE=0 LNL=1 LCF=0 CAPS=0 E=0 ESBU2=1 CL="" SC="" SCE= SCU=
|
||||
VIEW: LN=.45867 CL=29 LE=0 CX=30 CY=13 WI=5 BI=38 HT=0 HN=0 HF=0 HC=4
|
||||
BUFFER: BN="../mariadb/include/config.h"
|
||||
BI: MA=1 74 1 TABS=1 5 WWS=1 IWT=1 ST=0 IN=2 BW=0 US=32000 RO=0 SE=1 SN=0 BIN=0 MN=C/C++ HM=0 MF=608 TL=0 MLL=0 ASE=0 LNL=1 LCF=0 CAPS=0 E=0 ESBU2=1 CL="" SC="" SCE= SCU=
|
||||
VIEW: LN=.12519 CL=9 LE=0 CX=10 CY=15 WI=5 BI=40 HT=0 HN=0 HF=0 HC=4
|
||||
WINDOW: 54 0 747 373 0 0 N WF=0 WT=12 ",,,"
|
||||
BUFFER: BN="../mariadb/include/config.h"
|
||||
VIEW: LN=.12519 CL=9 LE=0 CX=10 CY=15 WI=343 BI=40 HT=0 HN=0 HF=0 HC=4
|
||||
WINDOW: 36 0 747 373 0 0 N WF=0 WT=8 ",,,"
|
||||
BUFFER: BN="../mariadb/sql/sql_plugin.cc"
|
||||
VIEW: LN=.35765 CL=1 LE=0 CX=2 CY=9 WI=264 BI=35 HT=0 HN=0 HF=0 HC=4
|
||||
WINDOW: 162 25 747 373 0 0 N WF=0 WT=2 ",,,"
|
||||
BUFFER: BN="export/include/idb_mysql.h"
|
||||
VIEW: LN=.1378 CL=48 LE=0 CX=49 CY=27 WI=234 BI=29 HT=0 HN=0 HF=0 HC=4
|
||||
WINDOW: 144 0 747 373 0 0 N WF=0 WT=3 ",,,"
|
||||
BUFFER: BN="../mariadb/storage/innobase/handler/ha_innodb.cc"
|
||||
VIEW: LN=.1684 CL=22 LE=0 CX=23 CY=15 WI=284 BI=28 HT=0 HN=0 HF=0 HC=4
|
||||
WINDOW: 0 125 747 373 0 0 N WF=0 WT=5 ",,,"
|
||||
BUFFER: BN="../mariadb/sql/table.h"
|
||||
VIEW: LN=.43633 CL=64 LE=0 CX=65 CY=19 WI=175 BI=31 HT=0 HN=0 HF=0 HC=4
|
||||
WINDOW: 18 150 747 373 0 0 N WF=0 WT=6 ",,,"
|
||||
BUFFER: BN="../mariadb/sql/sql_plugin.h"
|
||||
VIEW: LN=.3925 CL=16 LE=0 CX=17 CY=2 WI=206 BI=4 HT=0 HN=0 HF=0 HC=4
|
||||
WINDOW: 126 150 747 373 0 0 N WF=0 WT=1 ",,,"
|
||||
BUFFER: BN="dbcon/mysql/idb_mysql.h"
|
||||
VIEW: LN=.1353 CL=1 LE=0 CX=2 CY=16 WI=318 BI=34 HT=0 HN=0 HF=0 HC=4
|
||||
WINDOW: 180 50 747 373 0 0 N WF=0 WT=4 ",,,"
|
||||
BUFFER: BN="utils/udfsdk/Makefile"
|
||||
VIEW: LN=.509 CL=102 LE=36 CX=66 CY=18 WI=186 BI=30 HT=0 HN=0 HF=0 HC=4
|
||||
WINDOW: 72 50 747 373 0 0 N WF=0 WT=9 ",,,"
|
||||
BUFFER: BN="../mariadb/include/my_config.h"
|
||||
VIEW: LN=.10933 CL=24 LE=0 CX=25 CY=19 WI=305 BI=32 HT=0 HN=0 HF=0 HC=4
|
||||
WINDOW: 144 150 747 373 0 0 N WF=0 WT=7 ",,,"
|
||||
BUFFER: BN="../mariadb/include/my_global.h"
|
||||
VIEW: LN=.29646 CL=34 LE=0 CX=35 CY=18 WI=266 BI=37 HT=0 HN=0 HF=0 HC=4
|
||||
WINDOW: 36 150 747 373 0 0 N WF=0 WT=10 ",,,"
|
||||
BUFFER: BN="oam/oamcpp/liboamcpp.h"
|
||||
VIEW: LN=.16474 CL=30 LE=0 CX=30 CY=22 WI=339 BI=36 HT=0 HN=0 HF=0 HC=4
|
||||
WINDOW: 72 25 747 373 0 0 M WF=0 WT=13 ",,,"
|
||||
BUFFER: BN="../mariadb/sql/item_cmpfunc.h"
|
||||
VIEW: LN=.45867 CL=29 LE=0 CX=29 CY=13 WI=335 BI=38 HT=0 HN=0 HF=0 HC=4
|
||||
FILEHIST: 9
|
||||
mysql/include/my_alarm.h
|
||||
mysql/sql/handler.h
|
||||
dbcon/mysql/ha_calpont_dml.cpp
|
||||
../mariadb/storage/tokudb/ha_tokudb.cc
|
||||
../mariadb/storage/archive/ha_archive.cc
|
||||
dbcon/mysql/ha_calpont.cpp
|
||||
../mariadb/include/config.h
|
||||
oam/oamcpp/liboamcpp.h
|
||||
../mariadb/sql/item_cmpfunc.h
|
||||
DEBUG: 0 0 5 0 3 0 gdb
|
||||
00handle_fatal_signal../mysql/sql/signal_handler.cc16410
|
||||
00ndb_binlog_thread_func../mysql/sql/ha_ndbcluster_binlog.cc382210
|
||||
00ndb_util_thread_func../mysql/sql/ha_ndbcluster.cc940810
|
||||
00MYSQL_LOG~MYSQL_LOG../mysql/sql/log.cc206010
|
||||
00LOGGERcleanup_end../mysql/sql/log.cc88610
|
||||
printf
|
||||
strcpy
|
||||
std::*
|
||||
SESSION: gdb ATTACH: /home/calpont/4.0/export/bin/ExeMgr
|
||||
DEBUG: 3 0 1 0 3 0 gdb
|
||||
1qsv0
|
||||
1tableOid0
|
||||
1joblist::associateTupleJobStepstableInfoMap0
|
||||
00joblistassociateTupleJobSteps../4.0/dbcon/joblist/jlf_tuplejoblist.cpp290110x00007fa56a5437530
|
||||
printf
|
||||
strcpy
|
||||
std::*
|
||||
SESSION: gdb ATTACH: /home/calpont/mysql/sql/mysqld
|
||||
DEBUG: 1 0 3 0 3 0 gdb
|
||||
1ptr0
|
||||
00handle_connections_sockets../mysql/sql/mysqld.cc498700
|
||||
00LOGGERcleanup_end../mysql/sql/log.cc88600
|
||||
00processmonitor::ProcessMonitorprocessMessageprocmon/processmonitor.cpp75900
|
||||
printf
|
||||
strcpy
|
||||
std::*
|
||||
DEBUG2: 5
|
||||
00handle_fatal_signal../mysql/sql/signal_handler.cc1641055
|
||||
wwheremysqlddiedIfyouseenomessagesafterthissomethingwent\n |