Documentation ¶
Index ¶
- Constants
- Variables
- func DisconnectClients(ctx context.Context, conn *pgx.Conn) error
- func InitialiseDatabase(ctx context.Context, conn *pgx.Conn, fsys afero.Fs) error
- func ListSchemas(ctx context.Context, conn *pgx.Conn, exclude ...string) ([]string, error)
- func RestartDatabase(ctx context.Context, w io.Writer) error
- func RetryEverySecond(ctx context.Context, callback func() bool, timeout time.Duration) bool
- func Run(ctx context.Context, config pgconn.Config, fsys afero.Fs, ...) error
- func SeedDatabase(ctx context.Context, conn *pgx.Conn, fsys afero.Fs) error
- func WaitForHealthyService(ctx context.Context, container string, timeout time.Duration) bool
- func WaitForServiceReady(ctx context.Context, started []string) error
Constants ¶
View Source
const ( SET_POSTGRES_ROLE = "SET ROLE postgres;" LIST_SCHEMAS = "SELECT schema_name FROM information_schema.schemata WHERE NOT schema_name LIKE ANY($1) ORDER BY schema_name" )
Variables ¶
View Source
var ( ErrUnhealthy = errors.New("service not healthy") ErrDatabase = errors.New("database is not healthy") )
Functions ¶
func DisconnectClients ¶ added in v1.4.7
func InitialiseDatabase ¶ added in v1.7.5
func ListSchemas ¶ added in v1.61.0
func RetryEverySecond ¶ added in v1.29.1
func SeedDatabase ¶ added in v1.0.10
func WaitForHealthyService ¶ added in v1.29.1
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.