mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-02-07 12:50:32 +03:00
Merge branch 'bugfix/940'
This commit is contained in:
commit
b0b09cbb24
2
NEWS
2
NEWS
|
@ -6,6 +6,8 @@ What's new in psycopg 2.8.4
|
||||||
|
|
||||||
- Don't swallow keyboard interrupts on connect when a password is specified
|
- Don't swallow keyboard interrupts on connect when a password is specified
|
||||||
in the connection string (:ticket:`#898`).
|
in the connection string (:ticket:`#898`).
|
||||||
|
- Don't advance replication cursor when the message wasn't confirmed
|
||||||
|
(:ticket:`#940`).
|
||||||
- Fixed int overflow for large values in `~psycopg2.extensions.Column.table_oid`
|
- Fixed int overflow for large values in `~psycopg2.extensions.Column.table_oid`
|
||||||
and `~psycopg2.extensions.Column.type_code` (:ticket:`961`).
|
and `~psycopg2.extensions.Column.type_code` (:ticket:`961`).
|
||||||
- Fixed building with Python 3.8 (:ticket:`854`).
|
- Fixed building with Python 3.8 (:ticket:`854`).
|
||||||
|
|
|
@ -1576,7 +1576,9 @@ retry:
|
||||||
|
|
||||||
/* We can safely forward flush_lsn to the wal_end from the server keepalive message
|
/* We can safely forward flush_lsn to the wal_end from the server keepalive message
|
||||||
* if we know that the client already processed (confirmed) the last XLogData message */
|
* if we know that the client already processed (confirmed) the last XLogData message */
|
||||||
if (repl->flush_lsn >= repl->last_msg_data_start && wal_end > repl->flush_lsn) {
|
if (repl->explicitly_flushed_lsn >= repl->last_msg_data_start
|
||||||
|
&& wal_end > repl->explicitly_flushed_lsn
|
||||||
|
&& wal_end > repl->flush_lsn) {
|
||||||
repl->flush_lsn = wal_end;
|
repl->flush_lsn = wal_end;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -52,6 +52,7 @@ typedef struct replicationCursorObject {
|
||||||
|
|
||||||
XLogRecPtr last_msg_data_start; /* WAL pointer to the last non-keepalive message from the server */
|
XLogRecPtr last_msg_data_start; /* WAL pointer to the last non-keepalive message from the server */
|
||||||
struct timeval last_feedback; /* timestamp of the last feedback message to the server */
|
struct timeval last_feedback; /* timestamp of the last feedback message to the server */
|
||||||
|
XLogRecPtr explicitly_flushed_lsn; /* the flush LSN explicitly set by the send_feedback call */
|
||||||
} replicationCursorObject;
|
} replicationCursorObject;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -211,6 +211,9 @@ send_feedback(replicationCursorObject *self,
|
||||||
if (write_lsn > self->write_lsn)
|
if (write_lsn > self->write_lsn)
|
||||||
self->write_lsn = write_lsn;
|
self->write_lsn = write_lsn;
|
||||||
|
|
||||||
|
if (flush_lsn > self->explicitly_flushed_lsn)
|
||||||
|
self->explicitly_flushed_lsn = flush_lsn;
|
||||||
|
|
||||||
if (flush_lsn > self->flush_lsn)
|
if (flush_lsn > self->flush_lsn)
|
||||||
self->flush_lsn = flush_lsn;
|
self->flush_lsn = flush_lsn;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user