////////////////////////////////////////////////////////////////////////////// // Given a table qualified name, returns the table's name as an Ansi string NAString MVJoinGraph::fixName(const QualifiedName& tableName) const { // If the name already has double-quotes mark, that means it is already // in an Ansi format. if we return it ...AsAnsiString, another set of // double-quotes will be added, and we don't want to do that. if(tableName.getObjectName().contains('"')) { return tableName.getQualifiedNameAsString(); } return tableName.getQualifiedNameAsAnsiString(); }
// This method follows the same semantics as NATableDB::removeNATable void NARoutineDB::removeNARoutine(QualifiedName &routineName, ComQiScope qiScope, Int64 objUID, NABoolean ddlXns, NABoolean atCommit) { if ((ddlXns) && (NOT atCommit)) { CmpContext::DDLObjInfo ddlObj; ddlObj.ddlObjName = routineName.getQualifiedNameAsString(); ddlObj.qiScope = qiScope; ddlObj.ot = COM_USER_DEFINED_ROUTINE_OBJECT; ddlObj.objUID = objUID; NABoolean found = FALSE; for (Lng32 i = 0; ((NOT found) && (i < CmpCommon::context()->ddlObjsList().entries())); i++) { CmpContext::DDLObjInfo &ddlObjInList = CmpCommon::context()->ddlObjsList()[i]; if (ddlObj.ddlObjName == ddlObjInList.ddlObjName) found = TRUE; } removeNARoutine2(routineName, qiScope, objUID); if (NOT found) CmpCommon::context()->ddlObjsList().insert(ddlObj); return; } removeNARoutine2(routineName, qiScope, objUID); }