Bool support and type related insert/select tests
Go Tests / test (push) Failing after 6s

This commit is contained in:
2026-05-12 08:59:37 +02:00
parent ffd9cd004e
commit 1642a01aad
5 changed files with 176 additions and 14 deletions
+10
View File
@@ -36,6 +36,16 @@ type TestWithCompositeFk struct {
CompositeFkName string `sql:"nn;fk=TestWithCompositePk.Name;"`
}
type TestWithBool struct {
ID int `sql:"pk"`
BoolField bool `sql:"nn"`
}
type TestWithTime struct {
ID int `sql:"pk"`
TimeField int64 `sql:"nn"`
}
func TestMain(m *testing.M) {
log.SetupLogs("Info")