-
Notifications
You must be signed in to change notification settings - Fork 4
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
Update github.com/mattn/go-sqlite3 to newer version #56
Comments
Maybe pinging @jimlambrt since I see you are active on this repo |
It seems like you can either ignore the warning or upgrade your installed version of sqlite to eliminate the warning. Gorm's sqlite driver is the owner of the go-sqlite3 version we're using, so we can't just upgrade to v2 (if that would even eliminate the warning). Sorry, I'm not sure there's anything else we can do here to eliminate the warning. |
Ah, I don't have sqlite installed. It's coming from whatever is up the dependency tree, looks like from Gorm itself. And yep, I could ignore, but if it's something already fixed in a new version, it would be better to upgrade. But thanks for the info! |
Closing for now. |
even after adding flag getting same waring iam unable to install jaeles. since internally while installing jaeles its install go-sqllite3 github.com/mattn/go-sqlite3sqlite3-binding.c: In function ‘sqlite3SelectNew’: Please advise |
Describe the bug
When using this library, when I run my tests, I get this sqlite error, which comes from an old version of sqlite pulled in by this library:
From go.mod:
But this also exists on
v0.1.3
as well.mattn/go-sqlite3#803
mattn/go-sqlite3#822
https://github.com/hashicorp/go-dbw/blob/1d5f53bf2a7a95abae6879531fca90aa6db2213a/go.mod#L45C1-L45C50
In theory, bumping to the 2.x version with go-sqlite3 might fix this.
To Reproduce
Steps to reproduce the behavior:
Pull in this library from at least
v0.1.2
and write a test that invokes thego-dbw
library, see the error/warning message fromsqlite3-binding
.Expected behavior
No errors from an old sqlite library
Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: