-
Notifications
You must be signed in to change notification settings - Fork 914
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pq: unexpected describe rows response: 'D' #142
Comments
This is the same error as this: You can't run another query on the same connection without finishing the previous one. See the discussion on that thread. |
Ahh, yes, that was it. Thanks for the pointer! |
I faced the same error message. |
Just a heads-up:
fix:
|
…esponse 'C'". Source: lib/pq#142 (comment)
I was running to goroutines to update a different table with the same transaction, which was introducing a race condition that sometimes the 1st update query had not finished when the 2nd query started and giving me the error. |
Hello -
I created a prepared select statement. When I run it within a transaction, I get the follow error:
pq: unexpected describe rows response: 'D'
I believe lib/pq needs to support 'D'
libpq does it like so: http://doxygen.postgresql.org/fe-protocol3_8c_source.html#l00318
The text was updated successfully, but these errors were encountered: