Does drizzle support querying across multiple mysql databases (same mysql server)?
Here's some 'rough' code to demonstrate what I'm attempting to do... basically I have tables in two mysql databases (same mysql server). I can write SQL to query data from tables in different databases, but am struggling to get drizzle to do it. I saw that drizzle allows defining the database with mysqlSchema().
Looking at the query that is being generated, it is not using the mysql database (mysqlSchema). When the query is generated, it thinks both tables in the same mysql database (mysqlSchema).
Maybe the 'rqb' doesn't support multiple databases or does drizzle not support querying across them yet?
Looking at the query that is being generated, it is not using the mysql database (mysqlSchema). When the query is generated, it thinks both tables in the same mysql database (mysqlSchema).
Maybe the 'rqb' doesn't support multiple databases or does drizzle not support querying across them yet?