mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-10 19:16:34 +03:00
Dropped notices hack to get COPY errors from V2 protocol.
This commit is contained in:
parent
7fe7b669aa
commit
fdf1ba1aac
|
@ -1,3 +1,8 @@
|
|||
2010-11-22 Daniele Varrazzo <daniele.varrazzo@gmail.com>
|
||||
|
||||
* psycopg/connection_int.c: dropped notices hack to get COPY errors from
|
||||
V2 protocol.
|
||||
|
||||
2010-11-18 Daniele Varrazzo <daniele.varrazzo@gmail.com>
|
||||
|
||||
* psycopg/connection.h: Added enum with possilbe isolation level states.
|
||||
|
|
|
@ -46,25 +46,16 @@ conn_notice_callback(void *args, const char *message)
|
|||
|
||||
Dprintf("conn_notice_callback: %s", message);
|
||||
|
||||
/* unfortunately the old protocol return COPY FROM errors only as notices,
|
||||
so we need to filter them looking for such errors (but we do it
|
||||
only if the protocol if <3, else we don't need that)
|
||||
|
||||
NOTE: if we get here and the connection is unlocked then there is a
|
||||
/* NOTE: if we get here and the connection is unlocked then there is a
|
||||
problem but this should happen because the notice callback is only
|
||||
called from libpq and when we're inside libpq the connection is usually
|
||||
locked.
|
||||
*/
|
||||
|
||||
if (self->protocol < 3 && strncmp(message, "ERROR", 5) == 0)
|
||||
pq_set_critical(self, message);
|
||||
else {
|
||||
notice = (struct connectionObject_notice *)
|
||||
malloc(sizeof(struct connectionObject_notice));
|
||||
notice->message = strdup(message);
|
||||
notice->next = self->notice_pending;
|
||||
self->notice_pending = notice;
|
||||
}
|
||||
notice = (struct connectionObject_notice *)
|
||||
malloc(sizeof(struct connectionObject_notice));
|
||||
notice->message = strdup(message);
|
||||
notice->next = self->notice_pending;
|
||||
self->notice_pending = notice;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in New Issue
Block a user