Update DBPlan.cpp

This commit is contained in:
Chris-bot374
2024-07-06 13:14:23 +02:00
committed by GitHub
parent fca2a8ac54
commit c94f7533a4

View File

@@ -461,7 +461,7 @@ std::vector<std::string> DBPlan::getPlan() {
std::string rowstring;
for (const auto& col : row) {
rowstring.append(col.c_str());
rowstring.append(" , ");
rowstring.append(",");
}
plan.push_back(rowstring);