WIP: Refactor parse

This commit is contained in:
2026-06-05 15:54:47 +02:00
parent d20184a6f0
commit 146f07fa02
10 changed files with 255 additions and 180 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ func (r *Repository[T]) SelectByPk(pks ...any) *T {
var whereStmtBuilder strings.Builder
for _, constr := range table.Constraints {
for _, constr := range table.Constraints() {
if constr.Type != "pk" {
continue
}