Files
fn_registry/functions/infra/postgres/postgres_open.go
T
egutierrez e22c33ee6d refactor(infra): split de drivers pesados a subpaquetes + fix TestSSEHandler
Mueve duckdb_open, clickhouse_open, postgres_open, matrix_* y keyring_token_store
del paquete monolitico functions/infra a subpaquetes propios
(functions/infra/{duckdb,clickhouse,postgres,matrix,keyring}). El paquete infra ya
no importa los drivers (go-duckdb, clickhouse-go, pgx, mautrix, go-keyring), por lo
que las apps que solo usan funciones ligeras (process, cron, http, sqlite) dejan de
arrastrarlos. Reduccion de binarios: dag_engine 72->10MB, registry_api 70->8.7MB,
services_api 70->9MB, call_monitor 68->6.6MB, sqlite_api 70->8.9MB.

Los IDs del registry se mantienen estables (domain: infra en frontmatter). Se
preservan los build tags goolm/libolm de matrix_crypto_init.

Tambien corrige TestSSEHandler: el test leia el body con un unico Read() que con
HTTP chunked solo capturaba el primer evento; ahora usa io.ReadAll hasta EOF.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-02 23:48:59 +02:00

33 lines
885 B
Go

package postgres
import (
"database/sql"
"fmt"
_ "github.com/jackc/pgx/v5/stdlib"
)
// PostgresOpen connects to a PostgreSQL server and returns a *sql.DB.
// sslmode defaults to "disable" when empty.
// Constructs a DSN of the form:
//
// host=<host> port=<port> user=<user> password=<password> dbname=<dbname> sslmode=<sslmode>
func PostgresOpen(host string, port int, user, password, dbname string, sslmode string) (*sql.DB, error) {
if sslmode == "" {
sslmode = "disable"
}
dsn := fmt.Sprintf(
"host=%s port=%d user=%s password=%s dbname=%s sslmode=%s",
host, port, user, password, dbname, sslmode,
)
db, err := sql.Open("pgx", dsn)
if err != nil {
return nil, fmt.Errorf("postgres_open: open: %w", err)
}
if err := db.Ping(); err != nil {
db.Close()
return nil, fmt.Errorf("postgres_open: ping %s:%d/%s: %w", host, port, dbname, err)
}
return db, nil
}