@@ -167,16 +167,16 @@ void Export2DB::dropTables() const {
167167 pqxx::work Xaction (db_conn);
168168
169169 Xaction.exec (ways ().drop ());
170- std::cout << " TABLE: " << ways ().addSchema () << " droped ... OK.\n " ;
170+ std::cout << " TABLE: " << ways ().addSchema () << " dropped ... OK.\n " ;
171171
172172 Xaction.exec (vertices ().drop ());
173- std::cout << " TABLE: " << vertices ().addSchema () << " droped ... OK.\n " ;
173+ std::cout << " TABLE: " << vertices ().addSchema () << " dropped ... OK.\n " ;
174174
175175 Xaction.exec (pois ().drop ());
176- std::cout << " TABLE: " << pois ().addSchema () << " droped ... OK.\n " ;
176+ std::cout << " TABLE: " << pois ().addSchema () << " dropped ... OK.\n " ;
177177
178178 Xaction.exec (configuration ().drop ());
179- std::cout << " TABLE: " << configuration ().addSchema () << " droped ... OK.\n " ;
179+ std::cout << " TABLE: " << configuration ().addSchema () << " dropped ... OK.\n " ;
180180
181181 Xaction.commit ();
182182 } catch (const std::exception &e) {
@@ -188,13 +188,13 @@ void Export2DB::dropTables() const {
188188 pqxx::connection db_conn (conninf);
189189 pqxx::work Xaction (db_conn);
190190 Xaction.exec (osm_nodes ().drop ());
191- std::cout << " TABLE: " << osm_nodes ().addSchema () << " droped ... OK.\n " ;
191+ std::cout << " TABLE: " << osm_nodes ().addSchema () << " dropped ... OK.\n " ;
192192
193193 Xaction.exec (osm_ways ().drop ());
194- std::cout << " TABLE: " << osm_ways ().addSchema () << " droped ... OK.\n " ;
194+ std::cout << " TABLE: " << osm_ways ().addSchema () << " dropped ... OK.\n " ;
195195
196196 Xaction.exec (osm_relations ().drop ());
197- std::cout << " TABLE: " << osm_relations ().addSchema () << " droped ... OK.\n " ;
197+ std::cout << " TABLE: " << osm_relations ().addSchema () << " dropped ... OK.\n " ;
198198
199199 Xaction.commit ();
200200 } catch (const std::exception &e) {
0 commit comments