We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32d1258 commit 992d7e3Copy full SHA for 992d7e3
src/db-copy.cpp
@@ -129,6 +129,10 @@ void db_copy_thread_t::thread_t::operator()()
129
// Let commits happen faster by delaying when they actually occur.
130
m_conn->exec("SET synchronous_commit = off");
131
132
+ // Do not show messages about invalid geometries (they are removed
133
+ // by the trigger).
134
+ m_conn->exec("SET client_min_messages = WARNING");
135
+
136
bool done = false;
137
while (!done) {
138
std::unique_ptr<db_cmd_t> item;
0 commit comments