Repository impl & tests, move tests, comp. pk insert support
Go Tests / test (push) Failing after 8s

This commit is contained in:
2026-05-17 22:44:04 +02:00
parent 1642a01aad
commit e98dbe3338
7 changed files with 357 additions and 5 deletions
+1 -1
View File
@@ -287,7 +287,7 @@ func prepareParams(src any, t schema.Table) []any {
var params []any
for _, col := range t.Columns {
_, ok := col.Modifiers["pk"]
if ok {
if ok && t.IsPkAuto() {
continue
}
field, ok := t.Type.FieldByName(col.FieldName)