Skip to content

Commit 0dafb35

Browse files
Debug logs and ASAN
1 parent 8902a91 commit 0dafb35

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.drone.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ local Pipeline(branch, platform, event, arch="amd64", server="10.6-enterprise",
743743
]
744744
+ customEnvCommands(customBuildEnvCommandsMapKey, builddir) +
745745
[
746-
'bash -c "set -o pipefail && bash /mdb/' + builddir + "/storage/columnstore/columnstore/build/bootstrap_mcs.sh " +
746+
'bash -c "set -o pipefail && bash /mdb/' + builddir + "/storage/columnstore/columnstore/build/bootstrap_mcs.sh -A " +
747747
"--build-type RelWithDebInfo " +
748748
"--distro " + platform + " " +
749749
"--build-packages --sccache " +

dbcon/execplan/calpontsystemcatalog.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,6 +765,7 @@ void CalpontSystemCatalog::getSysData(CalpontSelectExecutionPlan& csep, NJLSysDa
765765
txnID.valid = true;
766766
}
767767

768+
idblog("Query context");
768769
BRM::QueryContext verID, oldVerID;
769770
verID = fSessionManager->verID();
770771
oldTxnID = csep.txnID();
@@ -1938,7 +1939,7 @@ boost::shared_ptr<CalpontSystemCatalog> CalpontSystemCatalog::makeCalpontSystemC
19381939
void CalpontSystemCatalog::removeCalpontSystemCatalog(uint32_t sessionID)
19391940
{
19401941
boost::mutex::scoped_lock lock(map_mutex);
1941-
idblog("for session ID " << sessionID << " syscat map " << (fCatalogMap.contains(sessionID) ? "contains" : "does not caontain") << "syscat instance");
1942+
idblog("for session ID " << sessionID << " syscat map " << (fCatalogMap.contains(sessionID) ? "contains" : "does not caontain") << " syscat instance");
19421943
DEBUG << "remove calpont system catalog for session " << sessionID << endl;
19431944
fCatalogMap.erase(sessionID);
19441945
/*

0 commit comments

Comments
 (0)