-
Notifications
You must be signed in to change notification settings - Fork 331
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Materialized views are recorded in a separate metadata table and not in information_schema.tables
, so when one tries to use them in pgml.train()
, they would get a "table not found" error.
A quick workaround is to create a regular view around the materialized view:
CREATE VIEW my_view AS SELECT * FROM my_mat_view;
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working