Postgresql 17
Hello,
Does prisma work with Postgresql 17?
In docs it mentions only 16, but at first glance I don't see any breaking changes that may affect prisma.
Databases supported by Prisma ORM | Prisma Documentation
This page lists all the databases and their versions that are supported by Prisma ORM.
6 Replies
Yes, I believe it should work as expected with PostgreSQL 17. Did you run into any issues?
I'll try it out with Postgres 17 and confirm that it works
Thanks
I'm not running into issues, but my thinking is if it's not listed in docs it might not be tested or there might be hidden caveats.
JFYI. I tried to test the package.
I've replaced both
postgres:10
and postgres:16
in docker-compose with postgres:17
And on branch 6.0.x
ran pnpm run test
and pnpm run test:functional
for packages/client
(I'm not interested in other parts and for me, the global test is failing almost immediately on pg-worker error)
pnpm run test
had no errors.
pnpm run test:functional
yielded 3 errors all related to mongodb, not postgres (see screenshot, and log)
pnpm run test:e2e
created a bunch of docker containers but failed with all LOGS.docker.txt files being empty.Thanks for confirming!
I'll add a PR to add Postgres 17 to our docs
GitHub
Update 375-supported-databases.mdx by nurul3101 · Pull Request #651...
Added Postgres 17 to Supported database
The PR is merged 👍