Good morning, I have ran some seeds against the da...
# orm-help
a
Good morning, I have ran some seeds against the database at the same time that someone else was doing some queries against it, Postgres started complaining about it:
cached plan must not change result type
After some googling I came up with a stackoverflow answer with people that managed to avoid that problem by doing this in the java driver
You can avoid the problem by configuring your 
pgjdbc
 driver with 
autosave=conservative
.
So I was trying to see if Prisma had an option like that anywhere but couldn’t find any reference to it, does someone know what the problem is or if there is such a setting that I can set in Prisma?
r
@Angelo 👋 It should be possible 🙂 If it doesn’t work after you add it, feel free to open an issue here with the reproduction steps so that we can investigate this.
👍 1