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
sqlc generates the following import in certain scenarios:
"github.com/tabbed/pqtype"
while leads to the following error running go mod tidy
github.com/tabbed/pqtype: github.com/tabbed/pqtype@v0.2.0: parsing go.mod:
module declares its path as: github.com/sqlc-dev/pqtype
but was required as: github.com/tabbed/pqtype
Probably related to the namespace migration.
Relevant log output
No response
Database schema
No response
SQL queries
No response
Configuration
No response
Playground URL
No response
What operating system are you using?
macOS
What database engines are you using?
PostgreSQL
What type of code are you generating?
Go
The text was updated successfully, but these errors were encountered:
Yep, this was overlooked when we moved sqlc-related things into the sqlc-dev GitHub organization. I'll have a PR up soon to fix this, and we may cut a new release. As a temporary workaround you can add a replace directive in your go.mod file like the following:
Version
Other
What happened?
sqlc 1.9.0
sqlc generates the following import in certain scenarios:
"github.com/tabbed/pqtype"
while leads to the following error running
go mod tidy
Probably related to the namespace migration.
Relevant log output
No response
Database schema
No response
SQL queries
No response
Configuration
No response
Playground URL
No response
What operating system are you using?
macOS
What database engines are you using?
PostgreSQL
What type of code are you generating?
Go
The text was updated successfully, but these errors were encountered: