File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1390,7 +1390,7 @@ void output_flex_t::stop(thread_pool_t *pool)
13901390{
13911391 for (auto &table : m_table_connections) {
13921392 pool->submit ([&]() {
1393- table.stop (m_options.slim & !m_options.droptemp , m_options.append );
1393+ table.stop (m_options.slim && !m_options.droptemp , m_options.append );
13941394 });
13951395 }
13961396
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ void output_pgsql_t::stop(thread_pool_t *pool)
124124 // attempt to stop tables in parallel
125125 for (auto &t : m_tables) {
126126 pool->submit ([&]() {
127- t->stop (m_options.slim & !m_options.droptemp ,
127+ t->stop (m_options.slim && !m_options.droptemp ,
128128 m_options.enable_hstore_index , m_options.tblsmain_index );
129129 });
130130 }
You can’t perform that action at this time.
0 commit comments