-
-
Notifications
You must be signed in to change notification settings - Fork 182
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
No data or expired data that is different from result in Dbeaver with same SQL returned #615
Comments
Update: we've enabled CDC on our database(a pdb). |
Have you inserted but not yet committed the data in Dbeaver (or any other connection)? |
I'm sure we'd never inserted, updated or deleted any data at the same time from Dbeaver. And we disabled supplemental log for CDC and the issue is still. Thanks a lot! |
Oracle db:
We are using
gorm-oracle
, which will importgo-ora
finally, to interact with Oracle database.go-ora
version ingo.mod
:github.com/sijms/go-ora/v2 v2.8.11
.For following SQL:
We occasionally got nothing returned or wrong
status
ingorm.DB#First()
. However, in Dbeaver we could see data as expected with the exactly same SQL.We tried:
database/sql.DB#maxIdleConnection
to0
), the issue can still be reproduced;We thought cursor may be leaked and we checked
database/sql.Rows#Close()
and make sure it will be closed finally.We'd also doubt the session state but has very little knowledge about this.
The text was updated successfully, but these errors were encountered: