Re: [PATCH] Remove unnecessary unbind in LDAP search+bind mode

2023-07-09 Thread Anatoly Zaretsky
On Sun, Jul 9, 2023 at 9:57 AM Peter Eisentraut wrote: > committed > Thanks! -- Best regards, Anatoly Zaretsky

Re: [PATCH] Remove unnecessary unbind in LDAP search+bind mode

2023-07-09 Thread Peter Eisentraut
On 03.07.23 11:53, Peter Eisentraut wrote: On 23.03.23 02:45, Anatoly Zaretsky wrote: Comments in src/backend/libpq/auth.c [1] say: (after successfully finding the final DN to check the user-supplied password against) /* Unbind and disconnect from the LDAP server */ and later /* * Need to

Re: [PATCH] Remove unnecessary unbind in LDAP search+bind mode

2023-07-03 Thread Peter Eisentraut
On 23.03.23 02:45, Anatoly Zaretsky wrote: Comments in src/backend/libpq/auth.c [1] say: (after successfully finding the final DN to check the user-supplied password against) /* Unbind and disconnect from the LDAP server */ and later /* * Need to re-initialize the LDAP connection, so that we

[PATCH] Remove unnecessary unbind in LDAP search+bind mode

2023-03-22 Thread Anatoly Zaretsky
Hi! Comments in src/backend/libpq/auth.c [1] say: (after successfully finding the final DN to check the user-supplied password against) /* Unbind and disconnect from the LDAP server */ and later /* * Need to re-initialize the LDAP connection, so that we can bind to * it with a different username.