Hi Citus team,
Is it possible to create a view which queries data from tables in multiple schemas. Current set up has one schema per customer and each schema has multiple tables. Would like to create a view which combines data from similar table across the schemas.Please note that each schema is in their own colocation group.
Example :
Customer_1_Schema.Order table
Customer_2_Schema.Order table
CREATE VIEW COMMON_ORDER AS
SELECT * FROM Customer_1_Schema.Order table
UNION
SELECT * FROM Customer_1_Schema.Order table;
Thanks for the help.