mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
Update MaterializedPostgreSQLConsumer.cpp
This commit is contained in:
parent
4486f26d51
commit
de9d254290
@ -45,7 +45,7 @@ MaterializedPostgreSQLConsumer::MaterializedPostgreSQLConsumer(
|
||||
, schema_as_a_part_of_table_name(schema_as_a_part_of_table_name_)
|
||||
, allow_automatic_update(allow_automatic_update_)
|
||||
{
|
||||
commited = false;
|
||||
committed = false;
|
||||
final_lsn = start_lsn;
|
||||
auto tx = std::make_shared<pqxx::nontransaction>(connection->getRef());
|
||||
current_lsn = advanceLSN(tx);
|
||||
@ -444,7 +444,7 @@ void MaterializedPostgreSQLConsumer::processReplicationMessage(const char * repl
|
||||
pos += unused_flags_len + commit_lsn_len + transaction_end_lsn_len + transaction_commit_timestamp_len;
|
||||
|
||||
final_lsn = current_lsn;
|
||||
commited = true;
|
||||
committed = true;
|
||||
break;
|
||||
}
|
||||
case 'R': // Relation
|
||||
@ -622,7 +622,7 @@ String MaterializedPostgreSQLConsumer::advanceLSN(std::shared_ptr<pqxx::nontrans
|
||||
|
||||
final_lsn = result[0][0].as<std::string>();
|
||||
LOG_TRACE(log, "Advanced LSN up to: {}", getLSNValue(final_lsn));
|
||||
commited = false;
|
||||
committed = false;
|
||||
return final_lsn;
|
||||
}
|
||||
|
||||
@ -799,7 +799,7 @@ bool MaterializedPostgreSQLConsumer::readFromReplicationSlot()
|
||||
}
|
||||
catch (const pqxx::broken_connection &)
|
||||
{
|
||||
LOG_DEBUG(log, "Connection was brocken");
|
||||
LOG_DEBUG(log, "Connection was broken");
|
||||
connection->tryUpdateConnection();
|
||||
return false;
|
||||
}
|
||||
@ -836,7 +836,7 @@ bool MaterializedPostgreSQLConsumer::readFromReplicationSlot()
|
||||
{
|
||||
syncTables();
|
||||
}
|
||||
else if (commited)
|
||||
else if (committed)
|
||||
{
|
||||
updateLsn();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user