+ reset head

This commit is contained in:
Artem Pavlenko 2010-11-22 11:25:27 +00:00
parent a95d6938ad
commit 6638423104

View file

@ -89,10 +89,10 @@ class Connection
std::string msg = PQerrorMessage( conn_ );
if ( ! msg.empty() )
{
s << ":" << std::endl << msg.substr( 0, msg.size() - 1 );
s << ":\n" << msg.substr( 0, msg.size() - 1 );
}
s << std::endl << "Full sql was: '" + sql + "'" << std::endl;
s << "\nFull sql was: '" << sql << "'\n";
}
throw mapnik::datasource_exception( s.str() );
}