diff --git a/src/pathways/postgres/postgres-adapter.ts b/src/pathways/postgres/postgres-adapter.ts index 8429ca7..f01289b 100644 --- a/src/pathways/postgres/postgres-adapter.ts +++ b/src/pathways/postgres/postgres-adapter.ts @@ -198,6 +198,9 @@ export class PostgresJsAdapter implements PostgresAdapter { } } + // Suppress PostgreSQL NOTICE messages (e.g. from CREATE TABLE IF NOT EXISTS) + postgresOptions.onnotice = () => {} + this.sql = this.postgres(this.connectionString, postgresOptions) } catch (error) { console.error("Failed to connect to PostgreSQL:", error)