mysql2 driver in edge middleware

Hi all,
is it possible to use the mysql2 driver in NextJs edge middleware?
I was previously running
import { drizzle } from 'drizzle-orm/planetscale-serverless';
which worked great, but i'm now migrating away from planetscale. The problem i'm facing is that when i switch to
import { drizzle } from 'drizzle-orm/mysql2';
i get the following error in NextJs:

edgeFunction is not a function


which suggest that something is relying on a node api somewhere.
I'm currently running my db on AWS RDS. Any suggestions how to deal with this?
Thanks!
Was this page helpful?