You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Initialize statement codecs immediately after Prepare
Currently the statement codecs are populated just before the first Bind
is issued. This is problematic as in the time since Prepare, the codec
cache for derived types (arrays, composites etc.) may have been purged
by an installation of a custom codec, or general schema state
invalidation.
Fix this by populating the codecs immediately after the statement data
types have been resolved.
Fixes: #241.
0 commit comments