Update Postgres clients we test (#3359)

Update client libraries and runtimes for Postgres libraries we test.
- `pg8000` works with Neon now 🎉 
- `PostgresClientKit` still doesn't support SNI
This commit is contained in:
Alexander Bayandin
2023-01-16 17:22:17 +00:00
committed by GitHub
parent 431e464c1e
commit 4c6b507472
16 changed files with 75 additions and 200 deletions

View File

@@ -16,7 +16,7 @@ do {
configuration.user = user
}
if let password = env["NEON_PASSWORD"] {
configuration.credential = .scramSHA256(password: password)
configuration.credential = .cleartextPassword(password: password)
}
let connection = try PostgresClientKit.Connection(configuration: configuration)