Fixed db getAllSignatureIds() method to get "all" signatures (with or without loopClosureId)

git-svn-id: http://rtabmap.googlecode.com/svn/branches/0.3/rtabmap@92 f169173b-cf89-36c8-b27e-44dbe73f0c83
This commit is contained in:
matlabbe
2011-06-09 17:57:02 +00:00
parent f6a782727f
commit d4c0ec15a2

View File

@@ -378,7 +378,6 @@ bool DBDriverSqlite3::getAllSignatureIdsQuery(std::set<int> & ids) const
query << "SELECT id "
<< "FROM Signature "
<< "WHERE loopClosureId == 0 "
<< "ORDER BY id";
rc = sqlite3_prepare_v2(_ppDb, query.str().c_str(), -1, &ppStmt, 0);