-
**Describe the bug**
I sometimes get a Null Pointer Exception when a job tries to run. We have around 100 jobs and only 15 of them fail intermittently and it only happens on 30% of executions of tho…
-
I would like know if you guys are open to have a plugin which talks to a SQL database. As far as I can see there are two ways to implement this:
1. Create generic table with all the records in there …
-
## Your Question
Is it possible to use a String as a specific ForeignKey ? Using PostgreSQL Adapter
- Golang 1.19.1 linux
- gorm.io/driver/postgres v1.4.5
- gorm.io/gorm v1.24.2
- …
-
## The Issue
I am using the postgres driver with a cockroachDB cluster (which maintains compatibility with PostgreSQL). However, the migrator fails to update the following model (after initial table …
-
### Checklist
- [ ] The issue has been searched in [GitHub Issues](https://github.com/go-sonic/sonic/issues)
### What is version of Sonic has the issue?
latest
### What database are you using?
SQ…
-
Hi, I'm using `gorm` which in turn uses `pgx`. In order to use arrays such as PostgreSQL `text[]`, there is `pq.StringArray` from `github.com/lib/pq`.
It works pretty fine, for instance in these ki…
-
How do we insert and select from a table with `inet` datatype using GORM?
here is my model
```
import (
"github.com/jackc/pgtype"
)
...
ClientIp pgtype.Inet `json:"client_ip" gorm…
-
## Sample Reproduction Code
I havent handled errors in the below program. I have written it with objective of reproducing the issue.
```go
package main
import (
"fmt"
"log"
"gorm.io/…
-
## issue
I found AutoMigrate no longer works when put inside Transaction after recent updates of postgres driver. Then I found it is caused by Migrator().ColumnTypes() not work when it is put insid…
-
here is my model
```
import (
"github.com/jackc/pgtype"
)
...
ClientIp pgtype.Inet `json:"client_ip" gorm:"type:inet;not null"`
...
```
I am trying to parse the ip address which…