moripaku
moripaku
The most ideal scenario would be to have just some wiki to further facilitate collaboration, but it can be a considerable upfront investment time- and resource-wise. But virtually anything is...
Minimal reproducing example (using `go.nhat.io/otelsql v0.16.0` to hide the `driver.RowsColumnScanner` implementation): main.go ```go package main import ( "database/sql" "fmt" _ "github.com/jackc/pgx/v5/stdlib" "go.nhat.io/otelsql" ) const conn = "postgres://postgres:postgres@postgres:5432/postgres?sslmode=disable" type scanner struct...
Without the interface support, it would not be possible for pgx to provide scanning of pgx types, extending the dependency on old pq types. Given that pq is adversely affecting...