postgres

package
v0.3.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 16, 2025 License: MIT Imports: 3 Imported by: 0

Documentation

Overview

Package postgres provides helpers for working with the Postgres database using the github.com/lib/pq driver. Should be imported explicitly. To register postgres as retryable func use side effect import like so:

import _ "github.com/acronis/go-dbkit/postgres"

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CheckPostgresError

func CheckPostgresError(err error, errCode ErrCode) bool

CheckPostgresError checks if the passed error relates to Postgres, and it's internal code matches the one from the argument.

Types

type ErrCode added in v0.3.0

type ErrCode string

ErrCode defines the type for Postgres error codes.

const (
	ErrCodeUniqueViolation      ErrCode = "unique_violation"
	ErrCodeDeadlockDetected     ErrCode = "deadlock_detected"
	ErrCodeSerializationFailure ErrCode = "serialization_failure"
)

Postgres error codes (will be filled gradually).

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL