1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-08-17 15:19:48 +00:00

Remove query_void() methods. query() is just fine.

This commit is contained in:
King_DuckZ 2015-12-30 10:20:52 +00:00
parent 43bec4711e
commit 9bb5689d48
4 changed files with 13 additions and 22 deletions

View file

@ -70,6 +70,6 @@ namespace din {
boost::copy(dele_ids | boost::adaptors::map_keys, infix_ostream_iterator<uint32_t>(oss, " OR \"id\"="));
oss << ";\nCOMMIT;";
conn.query_void(oss.str());
conn.query(oss.str());
}
} //namespace din