dbresolver icon indicating copy to clipboard operation
dbresolver copied to clipboard

WITH statement is not querying from replica

Open joefour opened this issue 2 years ago • 0 comments

GORM Playground Link

https://github.com/go-gorm/playground/pull/1

Description

Hi, i'm trying to use WITH statement, and expected it should query from replica database instead of source database

Here is an example

WITH alias_regions AS (
		SELECT * FROM regions
)
SELECT * FROM alias_regions

joefour avatar Jun 16 '23 16:06 joefour