Files
zitadel/backend/v3/storage/database/dialect/postgres/rows.go

19 lines
349 B
Go
Raw Normal View History

2025-04-29 06:03:47 +02:00
package postgres
import (
"github.com/jackc/pgx/v5"
"github.com/zitadel/zitadel/backend/v3/storage/database"
)
var _ database.Rows = (*Rows)(nil)
type Rows struct{ pgx.Rows }
// Close implements [database.Rows].
// Subtle: this method shadows the method (Rows).Close of Rows.Rows.
func (r *Rows) Close() error {
r.Rows.Close()
return nil
}