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.
2 parents 3862d7e + a21788f commit 9622948Copy full SHA for 9622948
2 files changed
src/output-flex.cpp
@@ -1390,7 +1390,7 @@ void output_flex_t::stop(thread_pool_t *pool)
1390
{
1391
for (auto &table : m_table_connections) {
1392
pool->submit([&]() {
1393
- table.stop(m_options.slim & !m_options.droptemp, m_options.append);
+ table.stop(m_options.slim && !m_options.droptemp, m_options.append);
1394
});
1395
}
1396
src/output-pgsql.cpp
@@ -124,7 +124,7 @@ void output_pgsql_t::stop(thread_pool_t *pool)
124
// attempt to stop tables in parallel
125
for (auto &t : m_tables) {
126
127
- t->stop(m_options.slim & !m_options.droptemp,
+ t->stop(m_options.slim && !m_options.droptemp,
128
m_options.enable_hstore_index, m_options.tblsmain_index);
129
130
0 commit comments