Skip to content

Commit 9622948

Browse files
authored
Merge pull request #1483 from joto/fix-use-logical-and
Use logical (not bitmap) and for booleans
2 parents 3862d7e + a21788f commit 9622948

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/output-flex.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/output-pgsql.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)